From d73b2c082213f72019601c95a3c85a2b62cc2dd4 Mon Sep 17 00:00:00 2001 From: Jingnan Xu Date: Sat, 8 Nov 2025 10:50:20 +1100 Subject: [PATCH 1/2] fix --- .../New-AzFrontDoorRoutingRuleObject.ps1 | 42 +++++++++++++++---- ...New-AzFrontDoorRulesEngineActionObject.ps1 | 42 +++++++++++++++---- .../FrontDoor.Autorest/docs/Az.FrontDoor.md | 2 +- .../FrontDoor.Autorest/generate-info.json | 2 +- src/FrontDoor/FrontDoor.sln | 28 ++++++------- src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 | 2 +- ...ew-AzFrontDoorBackendPoolsSettingObject.md | 2 +- 7 files changed, 88 insertions(+), 32 deletions(-) diff --git a/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRoutingRuleObject.ps1 b/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRoutingRuleObject.ps1 index d1e03ae88b38..9d3c2ba19ea8 100644 --- a/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRoutingRuleObject.ps1 +++ b/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRoutingRuleObject.ps1 @@ -140,18 +140,30 @@ function New-AzFrontDoorRoutingRuleObject { if ($PSBoundParameters.ContainsKey('CacheDuration')) { $CacheConfiguration.CacheDuration = $CacheDuration } - $CacheConfiguration.DynamicCompression = $PSBoundParameters.ContainsKey('DynamicCompression')? $DynamicCompression : 'Enabled' + if ($PSBoundParameters.ContainsKey('DynamicCompression')) { + $CacheConfiguration.DynamicCompression = $DynamicCompression + } else { + $CacheConfiguration.DynamicCompression = 'Enabled' + } if ($PSBoundParameters.ContainsKey('QueryParameter')) { $CacheConfiguration.QueryParameter = $QueryParameter } - $CacheConfiguration.QueryParameterStripDirective = $PSBoundParameters.ContainsKey('QueryParameterStripDirective')? $QueryParameterStripDirective : 'StripAll' + if ($PSBoundParameters.ContainsKey('QueryParameterStripDirective')) { + $CacheConfiguration.QueryParameterStripDirective = $QueryParameterStripDirective + } else { + $CacheConfiguration.QueryParameterStripDirective = 'StripAll' + } $ForwardingConfiguration.CacheConfiguration = $CacheConfiguration } if ($PSBoundParameters.ContainsKey('CustomForwardingPath')) { $ForwardingConfiguration.CustomForwardingPath = $CustomForwardingPath } - $ForwardingConfiguration.ForwardingProtocol = $PSBoundParameters.ContainsKey('ForwardingProtocol')? $ForwardingProtocol : 'MatchRequest' + if ($PSBoundParameters.ContainsKey('ForwardingProtocol')) { + $ForwardingConfiguration.ForwardingProtocol = $ForwardingProtocol + } else { + $ForwardingConfiguration.ForwardingProtocol = 'MatchRequest' + } $Object.RouteConfiguration = $ForwardingConfiguration } "ByFieldsWithRedirectParameterSet" { @@ -160,13 +172,29 @@ function New-AzFrontDoorRoutingRuleObject { if ($PSBoundParameters.ContainsKey('CustomFragment')) { $RedirectConfiguration.CustomFragment = $CustomFragment } - $RedirectConfiguration.CustomHost = $PSBoundParameters.ContainsKey('CustomHost')? $CustomHost : '' - $RedirectConfiguration.CustomPath = $PSBoundParameters.ContainsKey('CustomPath')? $CustomPath : '' + if ($PSBoundParameters.ContainsKey('CustomHost')) { + $RedirectConfiguration.CustomHost = $CustomHost + } else { + $RedirectConfiguration.CustomHost = '' + } + if ($PSBoundParameters.ContainsKey('CustomPath')) { + $RedirectConfiguration.CustomPath = $CustomPath + } else { + $RedirectConfiguration.CustomPath = '' + } if ($PSBoundParameters.ContainsKey('CustomQueryString')) { $RedirectConfiguration.CustomQueryString = $CustomQueryString } - $RedirectConfiguration.RedirectProtocol = $PSBoundParameters.ContainsKey('RedirectProtocol')? $RedirectProtocol : 'MatchRequest' - $RedirectConfiguration.RedirectType = $PSBoundParameters.ContainsKey('RedirectType')? $RedirectType : 'Moved' + if ($PSBoundParameters.ContainsKey('RedirectProtocol')) { + $RedirectConfiguration.RedirectProtocol = $RedirectProtocol + } else { + $RedirectConfiguration.RedirectProtocol = 'MatchRequest' + } + if ($PSBoundParameters.ContainsKey('RedirectType')) { + $RedirectConfiguration.RedirectType = $RedirectType + } else { + $RedirectConfiguration.RedirectType = 'Moved' + } $Object.RouteConfiguration = $RedirectConfiguration } diff --git a/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRulesEngineActionObject.ps1 b/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRulesEngineActionObject.ps1 index ed6f10f93e32..ffc19d9ef310 100644 --- a/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRulesEngineActionObject.ps1 +++ b/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorRulesEngineActionObject.ps1 @@ -143,18 +143,30 @@ function New-AzFrontDoorRulesEngineActionObject { if ($PSBoundParameters.ContainsKey('CacheDuration')) { $CacheConfiguration.CacheDuration = $CacheDuration } - $CacheConfiguration.DynamicCompression = $PSBoundParameters.ContainsKey('DynamicCompression')? $DynamicCompression : 'Enabled' + if ($PSBoundParameters.ContainsKey('DynamicCompression')) { + $CacheConfiguration.DynamicCompression = $DynamicCompression + } else { + $CacheConfiguration.DynamicCompression = 'Enabled' + } if ($PSBoundParameters.ContainsKey('QueryParameter')) { $CacheConfiguration.QueryParameter = $QueryParameter } - $CacheConfiguration.QueryParameterStripDirective = $PSBoundParameters.ContainsKey('QueryParameterStripDirective')? $QueryParameterStripDirective : 'StripAll' + if ($PSBoundParameters.ContainsKey('QueryParameterStripDirective')) { + $CacheConfiguration.QueryParameterStripDirective = $QueryParameterStripDirective + } else { + $CacheConfiguration.QueryParameterStripDirective = 'StripAll' + } $ForwardingConfiguration.CacheConfiguration = $CacheConfiguration } if ($PSBoundParameters.ContainsKey('CustomForwardingPath')) { $ForwardingConfiguration.CustomForwardingPath = $CustomForwardingPath } - $ForwardingConfiguration.ForwardingProtocol = $PSBoundParameters.ContainsKey('ForwardingProtocol')? $ForwardingProtocol : 'MatchRequest' + if ($PSBoundParameters.ContainsKey('ForwardingProtocol')) { + $ForwardingConfiguration.ForwardingProtocol = $ForwardingProtocol + } else { + $ForwardingConfiguration.ForwardingProtocol = 'MatchRequest' + } $Object.RouteConfigurationOverride = $ForwardingConfiguration break @@ -165,13 +177,29 @@ function New-AzFrontDoorRulesEngineActionObject { if ($PSBoundParameters.ContainsKey('CustomFragment')) { $RedirectConfiguration.CustomFragment = $CustomFragment } - $RedirectConfiguration.CustomHost = $PSBoundParameters.ContainsKey('CustomHost')? $CustomHost : '' - $RedirectConfiguration.CustomPath = $PSBoundParameters.ContainsKey('CustomPath')? $CustomPath : '' + if ($PSBoundParameters.ContainsKey('CustomHost')) { + $RedirectConfiguration.CustomHost = $CustomHost + } else { + $RedirectConfiguration.CustomHost = '' + } + if ($PSBoundParameters.ContainsKey('CustomPath')) { + $RedirectConfiguration.CustomPath = $CustomPath + } else { + $RedirectConfiguration.CustomPath = '' + } if ($PSBoundParameters.ContainsKey('CustomQueryString')) { $RedirectConfiguration.CustomQueryString = $CustomQueryString } - $RedirectConfiguration.RedirectProtocol = $PSBoundParameters.ContainsKey('RedirectProtocol')? $RedirectProtocol : 'MatchRequest' - $RedirectConfiguration.RedirectType = $PSBoundParameters.ContainsKey('RedirectType')? $RedirectType : 'Moved' + if ($PSBoundParameters.ContainsKey('RedirectProtocol')) { + $RedirectConfiguration.RedirectProtocol = $RedirectProtocol + } else { + $RedirectConfiguration.RedirectProtocol = 'MatchRequest' + } + if ($PSBoundParameters.ContainsKey('RedirectType')) { + $RedirectConfiguration.RedirectType = $RedirectType + } else { + $RedirectConfiguration.RedirectType = 'Moved' + } $Object.RouteConfigurationOverride = $RedirectConfiguration break diff --git a/src/FrontDoor/FrontDoor.Autorest/docs/Az.FrontDoor.md b/src/FrontDoor/FrontDoor.Autorest/docs/Az.FrontDoor.md index d9546d33eb0a..4ce76a4b77e0 100644 --- a/src/FrontDoor/FrontDoor.Autorest/docs/Az.FrontDoor.md +++ b/src/FrontDoor/FrontDoor.Autorest/docs/Az.FrontDoor.md @@ -1,6 +1,6 @@ --- Module Name: Az.FrontDoor -Module Guid: 2137812d-57b1-4758-b545-30ae71638628 +Module Guid: de841666-09d0-4c1e-a6ad-b3112699a6c2 Download Help Link: https://learn.microsoft.com/powershell/module/az.frontdoor Help Version: 1.0.0.0 Locale: en-US diff --git a/src/FrontDoor/FrontDoor.Autorest/generate-info.json b/src/FrontDoor/FrontDoor.Autorest/generate-info.json index e00b9d616f87..cb4608c1629d 100644 --- a/src/FrontDoor/FrontDoor.Autorest/generate-info.json +++ b/src/FrontDoor/FrontDoor.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "a7e2b3f2-93da-4267-9884-a33f03f9fef1" + "generate_Id": "7132e9cc-1085-459a-aea6-9c12fbcd4814" } diff --git a/src/FrontDoor/FrontDoor.sln b/src/FrontDoor/FrontDoor.sln index 7346d265fa81..8763e76b32e2 100644 --- a/src/FrontDoor/FrontDoor.sln +++ b/src/FrontDoor/FrontDoor.sln @@ -23,7 +23,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestF EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FrontDoor.Autorest", "FrontDoor.Autorest", "{CCB5835C-B2B2-6D15-3546-15EE6FE0A6E7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.FrontDoor", "..\..\generated\FrontDoor\FrontDoor.Autorest\Az.FrontDoor.csproj", "{45CA8110-3D84-42EB-897D-CBBA1BEAF930}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.FrontDoor", "..\..\generated\FrontDoor\FrontDoor.Autorest\Az.FrontDoor.csproj", "{586A9794-9845-466E-B230-692FB6A919EA}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -131,18 +131,18 @@ Global {CEE04FC4-EA9E-49F5-8E65-1BF927763971}.Release|x64.Build.0 = Release|Any CPU {CEE04FC4-EA9E-49F5-8E65-1BF927763971}.Release|x86.ActiveCfg = Release|Any CPU {CEE04FC4-EA9E-49F5-8E65-1BF927763971}.Release|x86.Build.0 = Release|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Debug|Any CPU.Build.0 = Debug|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Debug|x64.ActiveCfg = Debug|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Debug|x64.Build.0 = Debug|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Debug|x86.ActiveCfg = Debug|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Debug|x86.Build.0 = Debug|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Release|Any CPU.ActiveCfg = Release|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Release|Any CPU.Build.0 = Release|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Release|x64.ActiveCfg = Release|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Release|x64.Build.0 = Release|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Release|x86.ActiveCfg = Release|Any CPU - {45CA8110-3D84-42EB-897D-CBBA1BEAF930}.Release|x86.Build.0 = Release|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x64.ActiveCfg = Debug|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x64.Build.0 = Debug|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x86.ActiveCfg = Debug|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x86.Build.0 = Debug|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Release|Any CPU.Build.0 = Release|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Release|x64.ActiveCfg = Release|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Release|x64.Build.0 = Release|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Release|x86.ActiveCfg = Release|Any CPU + {586A9794-9845-466E-B230-692FB6A919EA}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -154,7 +154,7 @@ Global {4A06E6FB-D5E9-48DF-9BFB-867FE814F47E} = {52103A11-029D-492B-87C7-22D39EF55958} {671E6476-CDED-43A3-AB46-1338DAB61409} = {52103A11-029D-492B-87C7-22D39EF55958} {31599FB7-7929-4E92-834F-A23C603A9116} = {52103A11-029D-492B-87C7-22D39EF55958} - {45CA8110-3D84-42EB-897D-CBBA1BEAF930} = {CCB5835C-B2B2-6D15-3546-15EE6FE0A6E7} + {586A9794-9845-466E-B230-692FB6A919EA} = {CCB5835C-B2B2-6D15-3546-15EE6FE0A6E7} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {8030889A-062F-4BCC-8246-EC5BCEDCAF25} diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index be54719ac347..a3f53c12cb78 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2025/11/7 +# Generated on: 2025/11/8 # @{ diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md index 7a1786f460d5..e1e394832e99 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md @@ -1,7 +1,7 @@ --- external help file: Az.FrontDoor-help.xml Module Name: Az.FrontDoor -online version: https://learn.microsoft.com/powershell/module/az.frontdoor/new-azfrontdoorbackendpoolssettingobject +online version: https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingsobject schema: 2.0.0 --- From a9346d93f04653a34fcd961c7d38329469abdcf2 Mon Sep 17 00:00:00 2001 From: Jingnan Xu Date: Mon, 10 Nov 2025 11:25:25 +1100 Subject: [PATCH 2/2] fix --- ...w-AzFrontDoorBackendPoolsSettingObject.ps1 | 2 +- ...ew-AzFrontDoorBackendPoolsSettingObject.md | 2 +- .../FrontDoor.Autorest/generate-info.json | 2 +- src/FrontDoor/FrontDoor.sln | 28 +++++++++---------- src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 | 2 +- ...ew-AzFrontDoorBackendPoolsSettingObject.md | 2 +- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorBackendPoolsSettingObject.ps1 b/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorBackendPoolsSettingObject.ps1 index 681b1be4ed68..8ed54b6f6e47 100644 --- a/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorBackendPoolsSettingObject.ps1 +++ b/src/FrontDoor/FrontDoor.Autorest/custom/New-AzFrontDoorBackendPoolsSettingObject.ps1 @@ -23,7 +23,7 @@ Create an in-memory object for BackendPoolsSettings. .Outputs Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.BackendPoolsSettings .Link -https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingsobject +https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingobject #> function New-AzFrontDoorBackendPoolsSettingObject { [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.ModelCmdletAttribute()] diff --git a/src/FrontDoor/FrontDoor.Autorest/docs/New-AzFrontDoorBackendPoolsSettingObject.md b/src/FrontDoor/FrontDoor.Autorest/docs/New-AzFrontDoorBackendPoolsSettingObject.md index b75b9cc6041c..16fdd84324b1 100644 --- a/src/FrontDoor/FrontDoor.Autorest/docs/New-AzFrontDoorBackendPoolsSettingObject.md +++ b/src/FrontDoor/FrontDoor.Autorest/docs/New-AzFrontDoorBackendPoolsSettingObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.FrontDoor -online version: https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingsobject +online version: https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingobject schema: 2.0.0 --- diff --git a/src/FrontDoor/FrontDoor.Autorest/generate-info.json b/src/FrontDoor/FrontDoor.Autorest/generate-info.json index cb4608c1629d..3f64ee42209d 100644 --- a/src/FrontDoor/FrontDoor.Autorest/generate-info.json +++ b/src/FrontDoor/FrontDoor.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "7132e9cc-1085-459a-aea6-9c12fbcd4814" + "generate_Id": "d1340c55-8f29-452b-8617-778ef1c3ce8d" } diff --git a/src/FrontDoor/FrontDoor.sln b/src/FrontDoor/FrontDoor.sln index 8763e76b32e2..99ed6129d717 100644 --- a/src/FrontDoor/FrontDoor.sln +++ b/src/FrontDoor/FrontDoor.sln @@ -23,7 +23,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestF EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FrontDoor.Autorest", "FrontDoor.Autorest", "{CCB5835C-B2B2-6D15-3546-15EE6FE0A6E7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.FrontDoor", "..\..\generated\FrontDoor\FrontDoor.Autorest\Az.FrontDoor.csproj", "{586A9794-9845-466E-B230-692FB6A919EA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.FrontDoor", "..\..\generated\FrontDoor\FrontDoor.Autorest\Az.FrontDoor.csproj", "{B0D8665E-838F-41FB-AC8D-FD727F5F0E27}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -131,18 +131,18 @@ Global {CEE04FC4-EA9E-49F5-8E65-1BF927763971}.Release|x64.Build.0 = Release|Any CPU {CEE04FC4-EA9E-49F5-8E65-1BF927763971}.Release|x86.ActiveCfg = Release|Any CPU {CEE04FC4-EA9E-49F5-8E65-1BF927763971}.Release|x86.Build.0 = Release|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x64.ActiveCfg = Debug|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x64.Build.0 = Debug|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x86.ActiveCfg = Debug|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Debug|x86.Build.0 = Debug|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Release|Any CPU.Build.0 = Release|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Release|x64.ActiveCfg = Release|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Release|x64.Build.0 = Release|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Release|x86.ActiveCfg = Release|Any CPU - {586A9794-9845-466E-B230-692FB6A919EA}.Release|x86.Build.0 = Release|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Debug|x64.ActiveCfg = Debug|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Debug|x64.Build.0 = Debug|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Debug|x86.ActiveCfg = Debug|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Debug|x86.Build.0 = Debug|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Release|Any CPU.Build.0 = Release|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Release|x64.ActiveCfg = Release|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Release|x64.Build.0 = Release|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Release|x86.ActiveCfg = Release|Any CPU + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -154,7 +154,7 @@ Global {4A06E6FB-D5E9-48DF-9BFB-867FE814F47E} = {52103A11-029D-492B-87C7-22D39EF55958} {671E6476-CDED-43A3-AB46-1338DAB61409} = {52103A11-029D-492B-87C7-22D39EF55958} {31599FB7-7929-4E92-834F-A23C603A9116} = {52103A11-029D-492B-87C7-22D39EF55958} - {586A9794-9845-466E-B230-692FB6A919EA} = {CCB5835C-B2B2-6D15-3546-15EE6FE0A6E7} + {B0D8665E-838F-41FB-AC8D-FD727F5F0E27} = {CCB5835C-B2B2-6D15-3546-15EE6FE0A6E7} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {8030889A-062F-4BCC-8246-EC5BCEDCAF25} diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index a3f53c12cb78..1a71baca4733 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2025/11/8 +# Generated on: 2025/11/10 # @{ diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md index e1e394832e99..73686f3531ad 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolsSettingObject.md @@ -1,7 +1,7 @@ --- external help file: Az.FrontDoor-help.xml Module Name: Az.FrontDoor -online version: https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingsobject +online version: https://learn.microsoft.com/powershell/module/Az.FrontDoor/new-azfrontdoorbackendpoolssettingobject schema: 2.0.0 ---