From c4999e13f1def6036ad98082abeadc6e02d2e7dc Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Thu, 29 Oct 2020 23:29:27 -0700 Subject: [PATCH 1/7] Add ExpressRouteGatewayBypass Parameter to New and Set method of ExpressRouteConnection cmdlet --- src/Network/Network/ChangeLog.md | 3 ++ ...NewAzureRmExpressRouteConnectionCommand.cs | 8 ++++- ...SetAzureRmExpressRouteConnectionCommand.cs | 10 ++++++ .../Models/Cortex/PSExpressRouteConnection.cs | 3 ++ src/Network/Network/Network.format.ps1xml | 4 +++ .../help/New-AzExpressRouteConnection.md | 25 +++++++++++++-- .../help/Set-AzExpressRouteConnection.md | 32 +++++++++++++++---- 7 files changed, 75 insertions(+), 10 deletions(-) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 693fedb157d5..80c7790b7851 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -27,6 +27,9 @@ - Added parameter -SkuTier - Added parameter -SkuName and made Sku as Alias for this - Removed parameter -Sku +* Updated ExpressRouteConnection: + - Added parameter `-ExpressRouteGatewayBypass` in `New-AzExpressRouteConnection` + - Added parameter `-ExpressRouteGatewayBypass` in `Set-AzExpressRouteConnection` ## Version 3.5.0 * Added Office365 Policy to VPNSite Resource diff --git a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs index 7ab2f89f5849..786cde7a03fb 100644 --- a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs +++ b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs @@ -91,6 +91,11 @@ public class NewAzureRmExpressRouteConnectionCommand : ExpressRouteConnectionBas HelpMessage = "Enable internet security for this ExpressRoute Gateway connection")] public SwitchParameter EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "Bypass ExpressRoute Gateway for this ExpressRoute Gateway connection")] + public SwitchParameter ExpressRouteGatewayBypass { get; set; } + [Parameter( Mandatory = false, HelpMessage = "The routing configuration for this ExpressRoute Gateway connection")] @@ -150,7 +155,8 @@ private PSExpressRouteConnection CreateExpressRouteConnection() { Name = this.Name, ExpressRouteCircuitPeering = peeringResourceId, - EnableInternetSecurity = this.EnableInternetSecurity.IsPresent + EnableInternetSecurity = this.EnableInternetSecurity.IsPresent, + ExpressRouteGatewayBypass = this.ExpressRouteGatewayBypass.IsPresent }; if (this.RoutingConfiguration != null) diff --git a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs index efa2844231e7..edccca65d0c2 100644 --- a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs +++ b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs @@ -91,6 +91,11 @@ public class UpdateAzureRmExpressRouteConnectionCommand : ExpressRouteConnection HelpMessage = "Enable internet security for this connection")] public bool? EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "Bypass ExpressRoute Gateway for this connection")] + public bool? ExpressRouteGatewayBypass { get; set; } + [Parameter( Mandatory = false, HelpMessage = "The routing configuration for this ExpressRoute Gateway connection")] @@ -155,6 +160,11 @@ public override void Execute() expressRouteConnectionToModify.EnableInternetSecurity = this.EnableInternetSecurity.Value; } + if (this.ExpressRouteGatewayBypass.HasValue) + { + expressRouteConnectionToModify.ExpressRouteGatewayBypass = this.ExpressRouteGatewayBypass.Value; + } + if (this.RoutingConfiguration != null) { if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) diff --git a/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs b/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs index 8c7a22d89639..8690f90bfa11 100644 --- a/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs +++ b/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs @@ -31,6 +31,9 @@ public class PSExpressRouteConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } + [Ps1Xml(Label = "ExpressRoute GatewayBypass Enabled", Target = ViewControl.Table)] + public bool ExpressRouteGatewayBypass { get; set; } + public PSRoutingConfiguration RoutingConfiguration { get; set; } [Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)] diff --git a/src/Network/Network/Network.format.ps1xml b/src/Network/Network/Network.format.ps1xml index e004916ee57d..35313e1579ff 100644 --- a/src/Network/Network/Network.format.ps1xml +++ b/src/Network/Network/Network.format.ps1xml @@ -4853,6 +4853,10 @@ EnableInternetSecurity + + + ExpressRouteGatewayBypass + ProvisioningState diff --git a/src/Network/Network/help/New-AzExpressRouteConnection.md b/src/Network/Network/help/New-AzExpressRouteConnection.md index 4806b2ac5a6b..cf3a4ca78587 100644 --- a/src/Network/Network/help/New-AzExpressRouteConnection.md +++ b/src/Network/Network/help/New-AzExpressRouteConnection.md @@ -16,20 +16,24 @@ Creates an ExpressRoute connection that connects an ExpressRoute gateway to an o ``` New-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteGatewayObject ``` New-AzExpressRouteConnection -ExpressRouteGatewayObject -Name -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteGatewayResourceId ``` New-AzExpressRouteConnection -ParentResourceId -Name -ExpressRouteCircuitPeeringId - [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] + [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -155,6 +159,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ExpressRouteGatewayBypass +Bypass ExpressRoute Gateway for this ExpressRoute Gateway connection + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ExpressRouteGatewayName The resource group name. diff --git a/src/Network/Network/help/Set-AzExpressRouteConnection.md b/src/Network/Network/help/Set-AzExpressRouteConnection.md index 2e2cde27e645..dbcf3179b59d 100644 --- a/src/Network/Network/help/Set-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Set-AzExpressRouteConnection.md @@ -15,21 +15,25 @@ Updates an express route connection created between an express route gateway and ### ByExpressRouteConnectionName (Default) ``` Set-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name - [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity ] + [-ExpressRouteGatewayBypass ] [-RoutingConfiguration ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionResourceId ``` Set-AzExpressRouteConnection -ResourceId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-EnableInternetSecurity ] [-ExpressRouteGatewayBypass ] + [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### ByExpressRouteConnectionObject ``` Set-AzExpressRouteConnection -InputObject [-AuthorizationKey ] - [-RoutingWeight ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-RoutingWeight ] [-EnableInternetSecurity ] [-ExpressRouteGatewayBypass ] + [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -135,9 +139,25 @@ Accept wildcard characters: False Enable internet security for this ExpressRoute Gateway connection ```yaml -Type: SwitchParameter +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpressRouteGatewayBypass +Bypass ExpressRoute Gateway for this connection + +```yaml +Type: Boolean Parameter Sets: (All) Aliases: + Required: False Position: Named Default value: None From b9d6f1d174e40caaed76b6101aa4b898e58883f8 Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Thu, 29 Oct 2020 23:56:13 -0700 Subject: [PATCH 2/7] Update help file --- .../help/Set-AzExpressRouteConnection.md | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/Network/Network/help/Set-AzExpressRouteConnection.md b/src/Network/Network/help/Set-AzExpressRouteConnection.md index dbcf3179b59d..fbe5a8c14aa8 100644 --- a/src/Network/Network/help/Set-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Set-AzExpressRouteConnection.md @@ -14,26 +14,23 @@ Updates an express route connection created between an express route gateway and ### ByExpressRouteConnectionName (Default) ``` -Set-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name - [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity ] - [-ExpressRouteGatewayBypass ] [-RoutingConfiguration ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +New-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name + -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] + [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionResourceId ``` -Set-AzExpressRouteConnection -ResourceId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity ] [-ExpressRouteGatewayBypass ] - [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +New-AzExpressRouteConnection -ExpressRouteGatewayObject -Name + -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] + [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionObject ``` Set-AzExpressRouteConnection -InputObject [-AuthorizationKey ] - [-RoutingWeight ] [-EnableInternetSecurity ] [-ExpressRouteGatewayBypass ] - [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + New-AzExpressRouteConnection -ParentResourceId -Name -ExpressRouteCircuitPeeringId + [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -139,7 +136,7 @@ Accept wildcard characters: False Enable internet security for this ExpressRoute Gateway connection ```yaml -Type: Boolean +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -154,7 +151,7 @@ Accept wildcard characters: False Bypass ExpressRoute Gateway for this connection ```yaml -Type: Boolean +Type: SwitchParameter Parameter Sets: (All) Aliases: From 2ccddcc3bf5dc372d34673f478a634fe312b9fb5 Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Fri, 30 Oct 2020 00:03:19 -0700 Subject: [PATCH 3/7] Update help file v2 --- .../help/Set-AzExpressRouteConnection.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/Network/Network/help/Set-AzExpressRouteConnection.md b/src/Network/Network/help/Set-AzExpressRouteConnection.md index fbe5a8c14aa8..0f35ec4df75f 100644 --- a/src/Network/Network/help/Set-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Set-AzExpressRouteConnection.md @@ -14,23 +14,22 @@ Updates an express route connection created between an express route gateway and ### ByExpressRouteConnectionName (Default) ``` -New-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name - -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name + [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionResourceId ``` -New-AzExpressRouteConnection -ExpressRouteGatewayObject -Name - -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] +Set-AzExpressRouteConnection -ResourceId [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionObject ``` Set-AzExpressRouteConnection -InputObject [-AuthorizationKey ] - New-AzExpressRouteConnection -ParentResourceId -Name -ExpressRouteCircuitPeeringId - [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-RoutingWeight ] [-EnableInternetSecurity] [-ExpressRouteGatewayBypass] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -139,7 +138,6 @@ Enable internet security for this ExpressRoute Gateway connection Type: SwitchParameter Parameter Sets: (All) Aliases: - Required: False Position: Named Default value: None @@ -148,7 +146,7 @@ Accept wildcard characters: False ``` ### -ExpressRouteGatewayBypass -Bypass ExpressRoute Gateway for this connection +Bypass ExpressRoute Gateway for this ExpressRoute Gateway connection ```yaml Type: SwitchParameter @@ -315,4 +313,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) \ No newline at end of file From bb4c04e3757fc87d30ecbfd1301b7ac28b5c614c Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Mon, 2 Nov 2020 17:21:08 -0800 Subject: [PATCH 4/7] Add StaticAnalysis results --- .../Exceptions/Az.Network/SignatureIssues.csv | 376 ++++++++++++++++++ .../help/Get-AzExpressRouteConnection.md | 15 +- 2 files changed, 385 insertions(+), 6 deletions(-) create mode 100644 artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv diff --git a/artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv new file mode 100644 index 000000000000..6931dddf772e --- /dev/null +++ b/artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -0,0 +1,376 @@ +AssemblyFileName,ClassName,Target,Severity,ProblemId,Description,Remediation +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand,New-AzVpnClientIpsecPolicy,1,8100,New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand,New-AzVpnClientIpsecParameter,1,8100,New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8100,Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8100,New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand,Remove-AzApplicationGatewayBackendHttpSetting,1,8100,Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8100,Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand,Get-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand,New-AzApplicationGatewayConnectionDraining,1,8100,New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8100,Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8100,Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,New-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,Set-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand,New-AzApplicationGatewayProbeHealthResponseMatch,1,8100,New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8100,Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8100,New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand,Remove-AzApplicationGatewayFrontendIPConfig,1,8100,Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8100,Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand,Add-AzApplicationGatewayFrontendPort,1,8100,Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand,New-AzApplicationGatewayFrontendPort,1,8100,New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand,Remove-AzApplicationGatewayFrontendPort,1,8100,Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand,Set-AzApplicationGatewayFrontendPort,1,8100,Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8100,Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8100,New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand,Remove-AzApplicationGatewayIPConfiguration,1,8100,Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8100,Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8100,Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8100,New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand,Remove-AzApplicationGatewayHttpListener,1,8100,Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8100,Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8100,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8410,Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8100,New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8100,Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8100,New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand,Remove-AzApplicationGatewayProbeConfig,1,8100,Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8100,Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand,Remove-AzApplicationGateway,1,8600,Cmdlet 'Remove-AzApplicationGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8100,Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8100,New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand,Remove-AzApplicationGatewayRedirectConfiguration,1,8100,Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8100,Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8100,Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8100,New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand,Remove-AzApplicationGatewayRequestRoutingRule,1,8100,Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8100,Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand,Set-AzApplicationGateway,1,8100,Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand,New-AzApplicationGatewaySku,1,8100,New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand,Set-AzApplicationGatewaySku,1,8100,Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand,Add-AzApplicationGatewaySslCertificate,1,8100,Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand,New-AzApplicationGatewaySslCertificate,1,8100,New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand,Remove-AzApplicationGatewaySslCertificate,1,8100,Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand,Set-AzApplicationGatewaySslCertificate,1,8100,Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand,New-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand,Set-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand,Start-AzApplicationGateway,1,8100,Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand,Stop-AzApplicationGateway,1,8100,Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8100,Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8100,New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand,Remove-AzApplicationGatewayUrlPathMapConfig,1,8100,Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8100,Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup,Remove-AzApplicationSecurityGroup,1,8600,Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan,Remove-AzDdosProtectionPlan,1,8600,Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand,Add-AzExpressRouteCircuitAuthorization,1,8100,Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand,New-AzExpressRouteCircuitAuthorization,1,8100,New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand,Remove-AzExpressRouteCircuitAuthorization,1,8100,Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8100,Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8100,New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand,Remove-AzLoadBalancerInboundNatPoolConfig,1,8100,Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8100,Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8100,Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8100,New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand,Remove-AzExpressRouteCircuitPeeringConfig,1,8100,Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8100,Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand,Remove-AzExpressRouteCircuit,1,8600,Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand,Set-AzExpressRouteCircuit,1,8100,Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand,Add-AzNetworkInterfaceIpConfig,1,8100,Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand,New-AzNetworkInterfaceIpConfig,1,8100,New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand,Remove-AzNetworkInterfaceIpConfig,1,8100,Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand,Set-AzNetworkInterfaceIpConfig,1,8100,Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand,Get-AzNetworkWatcher,1,8510,"Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand,Start-AzNetworkWatcherResourceTroubleshooting,1,8100,Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand,New-AzPacketCaptureFilterConfig,1,8100,New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand,Remove-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand,Stop-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8600,Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8510,"Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmRouteTable,Get-AzRouteTable,1,8510,"Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable,Remove-AzRouteTable,1,8600,Cmdlet 'Remove-AzRouteTable' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8100,New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand,Get-AzRouteFilter,1,8510,"Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand,Remove-AzRouteFilter,1,8600,Cmdlet 'Remove-AzRouteFilter' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet,Test-AzPrivateIPAddressAvailability,1,8510,"Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand,Remove-AzPublicIpAddress,1,8600,Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand,Set-AzPublicIpAddress,1,8100,Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand,Add-AzVpnClientRootCertificate,1,8100,Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand,Add-AzVpnClientRevokedCertificate,1,8100,Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand,New-AzVpnClientRootCertificate,1,8100,New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand,New-AzVpnClientRevokedCertificate,1,8100,New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand,Resize-AzVirtualNetworkGateway,1,8100,Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8100,Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8100,Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8100,New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand,Add-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand,Remove-AzVirtualNetworkGateway,1,8600,Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand,Reset-AzVirtualNetworkGateway,1,8100,Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand,Set-AzVirtualNetworkGatewayDefaultSite,1,8100,Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand,Remove-AzVirtualNetworkGatewayDefaultSite,1,8100,Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand,Remove-AzLocalNetworkGateway,1,8600,Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand,Set-AzLocalNetworkGateway,1,8100,Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand,Remove-AzVirtualNetworkGatewayConnection,1,8600,Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand,Add-AzLoadBalancerBackendAddressPoolConfig,1,8100,Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand,New-AzLoadBalancerBackendAddressPoolConfig,1,8100,New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand,Remove-AzLoadBalancerBackendAddressPoolConfig,1,8100,Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8100,Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8100,Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8100,New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand,Remove-AzLoadBalancerFrontendIpConfig,1,8100,Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand,Get-AzLoadBalancer,1,8510,"Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8100,Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8100,Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8100,New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand,Remove-AzLoadBalancerInboundNatRuleConfig,1,8100,Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8100,Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8100,Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8100,New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand,Remove-AzLoadBalancerRuleConfig,1,8100,Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand,Set-AzLoadBalancerProbeConfig,1,8100,Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand,Add-AzLoadBalancerProbeConfig,1,8100,Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand,New-AzLoadBalancerProbeConfig,1,8100,New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand,Remove-AzLoadBalancerProbeConfig,1,8100,Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand,Remove-AzLoadBalancer,1,8600,Cmdlet 'Remove-AzLoadBalancer' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand,Set-AzLoadBalancer,1,8100,Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand,Remove-AzNetworkInterface,1,8600,Cmdlet 'Remove-AzNetworkInterface' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand,Set-AzNetworkInterface,1,8100,Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand,Get-AzNetworkSecurityGroup,1,8510,"Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand,New-AzNetworkSecurityRuleConfig,1,8100,New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand,Get-AzNetworkSecurityRuleConfig,1,8410,Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand,Remove-AzNetworkSecurityRuleConfig,1,8100,Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand,Set-AzNetworkSecurityRuleConfig,1,8100,Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand,Add-AzNetworkSecurityRuleConfig,1,8100,Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand,New-AzNetworkSecurityGroup,1,8410,Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand,Remove-AzNetworkSecurityGroup,1,8600,Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand,Set-AzNetworkSecurityGroup,1,8100,Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8100,Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand,Remove-AzVirtualNetworkPeering,1,8600,Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand,Set-AzVirtualNetworkPeering,1,8100,Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand,Remove-AzVirtualNetwork,1,8600,Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand,Set-AzVirtualNetwork,1,8100,Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand,Remove-AzVirtualNetworkSubnetConfig,1,8100,Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand,Set-AzVirtualNetworkSubnetConfig,1,8100,Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand,Add-AzVirtualNetworkSubnetConfig,1,8100,Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand,New-AzVirtualNetworkSubnetConfig,1,8100,New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation,Add-AzDelegation,1,8100,Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation,Remove-AzDelegation,1,8100,Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand,New-AzDelegation,1,8100,New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand,Get-AzVirtualNetwork,1,8510,"Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration,New-AzNetworkWatcherProtocolConfiguration,1,8100,New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan,Get-AzDdosProtectionPlan,1,8510,"Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand,Set-AzNetworkWatcherConfigFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand,Get-AzExpressRouteCrossConnectionArpTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand,Get-AzExpressRouteCrossConnectionRouteTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand,Get-AzExpressRouteCrossConnectionRouteTableSummary,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand,New-AzApplicationGatewayFirewallExclusionConfig,1,8100,New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand,Add-AzApplicationGatewayCustomError,1,8100,Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand,New-AzApplicationGatewayCustomError,1,8100,New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand,Remove-AzApplicationGatewayCustomError,1,8100,Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand,Set-AzApplicationGatewayCustomError,1,8100,Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand,Add-AzApplicationGatewayHttpListenerCustomError,1,8100,Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand,New-AzApplicationGatewayHttpListenerCustomError,1,8100,New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand,Remove-AzApplicationGatewayHttpListenerCustomError,1,8100,Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand,Set-AzApplicationGatewayHttpListenerCustomError,1,8100,Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand,New-AzVirtualHubRoute,1,8100,New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand,New-AzVirtualHubRouteTable,1,8100,New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort,New-AzExpressRoutePort,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand,New-AzApplicationGatewayRewriteRuleActionSet,1,8100,New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand,New-AzApplicationGatewayRewriteRuleHeaderConfiguration,1,8100,New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand,New-AzApplicationGatewayRewriteRuleCondition,1,8100,New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand,Add-AzApplicationGatewayRewriteRuleSet,1,8100,Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand,New-AzApplicationGatewayRewriteRuleSet,1,8100,New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand,Remove-AzApplicationGatewayRewriteRuleSet,1,8100,Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand,Set-AzApplicationGatewayRewriteRuleSet,1,8100,Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand,New-AzApplicationGatewayRewriteRule,1,8100,New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile,1,8100,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic,1,8100,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand,New-AzApplicationGatewayFirewallCondition,1,8100,New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand,New-AzApplicationGatewayFirewallCustomRule,1,8100,New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand,New-AzApplicationGatewayFirewallMatchVariable,1,8100,New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand,New-AzPrivateLinkServiceConnection,1,8100,New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection,Set-AzPrivateEndpointConnection,1,8100,Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration,New-AzPrivateLinkServiceIpConfig,1,8100,New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand,Set-AzPrivateEndpoint,1,8100,Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection,Approve-AzPrivateEndpointConnection,1,8100,Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection,Deny-AzPrivateEndpointConnection,1,8100,Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand,Set-AzPrivateLinkService,1,8100,Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand,New-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8100,New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8100,New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand,Update-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand,New-AzExpressRoutePortIdentity,1,8100,New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand,Remove-AzExpressRoutePortIdentity,1,8100,Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand,Set-AzExpressRoutePortIdentity,1,8100,Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand,New-AzFirewallPolicyApplicationRule,1,8100,New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand,New-AzFirewallPolicyFilterRuleCollection,1,8100,New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8100,New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand,Add-AzVirtualHubRoute,1,8100,Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand,New-AzFirewallThreatIntelWhitelist,1,8100,New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress,New-AzFirewallHubPublicIpAddress,1,8100,New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress,New-AzFirewallHubIpAddress,1,8100,New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress,New-AzFirewallPublicIpAddress,1,8100,New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand,New-AzApplicationGatewayFirewallPolicyExclusion,1,8100,New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand,New-AzApplicationGatewayFirewallPolicyManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8100,New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8510,"Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand,Get-AzIpAllocation,1,8510,"Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand,Remove-AzIpAllocation,1,8510,"Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8100,Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8510,"Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand,New-AzLocalNetworkGateway,1,8510,"Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand,New-AzNetworkWatcherConnectionMonitorEndpointObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand,New-AzNetworkWatcherConnectionMonitorObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand,New-AzNetworkWatcherConnectionMonitorTestConfigurationObject,1,8410,Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8100,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand,New-AzRadiusServer,1,8100,New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand,New-AzPrivateDnsZoneConfig,1,8100,New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand,Add-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand,New-AzApplicationGatewayPrivateLinkConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand,New-AzApplicationGatewayPrivateLinkIpConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand,Remove-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand,Set-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand,New-AzFirewallPolicyThreatIntelWhitelist,1,8100,New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8100,New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand,New-AzRoutingConfiguration,1,8100,New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand,New-AzStaticRoute,1,8100,New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand,New-AzVHubRoute,1,8100,New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand,New-AzOffice365PolicyProperty,1,8100,New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand,New-AzVirtualApplianceSkuProperty,1,8100,New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA,New-AzExpressRoutePortLOA,1,8100,New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand,New-AzO365PolicyProperty,1,8100,New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand,New-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand,Set-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet Set-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. diff --git a/src/Network/Network/help/Get-AzExpressRouteConnection.md b/src/Network/Network/help/Get-AzExpressRouteConnection.md index 1d85f01a3a97..35ca4c05802f 100644 --- a/src/Network/Network/help/Get-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Get-AzExpressRouteConnection.md @@ -58,6 +58,7 @@ Name : testConnection Etag : W/"00000000-0000-0000-0000-000000000000" Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection EnableInternetSecurity : False +ExpressRouteGatewayBypass : False RoutingConfiguration : { "AssociatedRouteTable": { "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" @@ -96,6 +97,7 @@ Name : testConnection1 Etag : W/"00000000-0000-0000-0000-000000000000" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection1 EnableInternetSecurity : False +ExpressRouteGatewayBypass : False RoutingConfiguration : { "AssociatedRouteTable": { "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" @@ -121,6 +123,7 @@ Name : testConnection2 Etag : W/"00000000-0000-0000-0000-000000000000" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection2 EnableInternetSecurity : False +ExpressRouteGatewayBypass : False RoutingConfiguration : { "AssociatedRouteTable": { "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" @@ -147,7 +150,7 @@ This command will get all Connections in ExpressRoute "testExpressRoutegw" that The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -162,7 +165,7 @@ Accept wildcard characters: False The parent resource name. ```yaml -Type: System.String +Type: String Parameter Sets: ByExpressRouteGatewayName Aliases: @@ -177,7 +180,7 @@ Accept wildcard characters: False The parent ExpressRouteGateway for this connection. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway +Type: PSExpressRouteGateway Parameter Sets: ByExpressRouteGatewayObject Aliases: ExpressRouteGateway @@ -192,7 +195,7 @@ Accept wildcard characters: False The resource name. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: ResourceName, ExpressRouteConnectionName @@ -207,7 +210,7 @@ Accept wildcard characters: True The resource id of the parent ExpressRouteGateway for this connection. ```yaml -Type: System.String +Type: String Parameter Sets: ByExpressRouteGatewayResourceId Aliases: ExpressRouteGatewayId @@ -222,7 +225,7 @@ Accept wildcard characters: False The resource group name. ```yaml -Type: System.String +Type: String Parameter Sets: ByExpressRouteGatewayName Aliases: From 3282011a3de7831fc9d4d0fd4bef4ce078859594 Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Mon, 2 Nov 2020 17:43:18 -0800 Subject: [PATCH 5/7] Delete SignatureIssues.csv --- .../Exceptions/Az.Network/SignatureIssues.csv | 376 ------------------ 1 file changed, 376 deletions(-) delete mode 100644 artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv diff --git a/artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv deleted file mode 100644 index 6931dddf772e..000000000000 --- a/artifacts/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ /dev/null @@ -1,376 +0,0 @@ -AssemblyFileName,ClassName,Target,Severity,ProblemId,Description,Remediation -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand,New-AzVpnClientIpsecPolicy,1,8100,New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand,New-AzVpnClientIpsecParameter,1,8100,New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8100,Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8100,New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand,Remove-AzApplicationGatewayBackendHttpSetting,1,8100,Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8100,Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand,Get-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand,New-AzApplicationGatewayConnectionDraining,1,8100,New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8100,Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8100,Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,New-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,Set-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand,New-AzApplicationGatewayProbeHealthResponseMatch,1,8100,New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8100,Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8100,New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand,Remove-AzApplicationGatewayFrontendIPConfig,1,8100,Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8100,Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand,Add-AzApplicationGatewayFrontendPort,1,8100,Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand,New-AzApplicationGatewayFrontendPort,1,8100,New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand,Remove-AzApplicationGatewayFrontendPort,1,8100,Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand,Set-AzApplicationGatewayFrontendPort,1,8100,Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8100,Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8100,New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand,Remove-AzApplicationGatewayIPConfiguration,1,8100,Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8100,Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8100,Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8100,New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand,Remove-AzApplicationGatewayHttpListener,1,8100,Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8100,Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8100,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8410,Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8100,New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8100,Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8100,New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand,Remove-AzApplicationGatewayProbeConfig,1,8100,Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8100,Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand,Remove-AzApplicationGateway,1,8600,Cmdlet 'Remove-AzApplicationGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8100,Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8100,New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand,Remove-AzApplicationGatewayRedirectConfiguration,1,8100,Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8100,Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8100,Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8100,New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand,Remove-AzApplicationGatewayRequestRoutingRule,1,8100,Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8100,Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand,Set-AzApplicationGateway,1,8100,Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand,New-AzApplicationGatewaySku,1,8100,New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand,Set-AzApplicationGatewaySku,1,8100,Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand,Add-AzApplicationGatewaySslCertificate,1,8100,Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand,New-AzApplicationGatewaySslCertificate,1,8100,New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand,Remove-AzApplicationGatewaySslCertificate,1,8100,Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand,Set-AzApplicationGatewaySslCertificate,1,8100,Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand,New-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand,Set-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand,Start-AzApplicationGateway,1,8100,Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand,Stop-AzApplicationGateway,1,8100,Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8100,Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8100,New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand,Remove-AzApplicationGatewayUrlPathMapConfig,1,8100,Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8100,Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup,Remove-AzApplicationSecurityGroup,1,8600,Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan,Remove-AzDdosProtectionPlan,1,8600,Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand,Add-AzExpressRouteCircuitAuthorization,1,8100,Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand,New-AzExpressRouteCircuitAuthorization,1,8100,New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand,Remove-AzExpressRouteCircuitAuthorization,1,8100,Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8100,Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8100,New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand,Remove-AzLoadBalancerInboundNatPoolConfig,1,8100,Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8100,Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8100,Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8100,New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand,Remove-AzExpressRouteCircuitPeeringConfig,1,8100,Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8100,Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand,Remove-AzExpressRouteCircuit,1,8600,Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand,Set-AzExpressRouteCircuit,1,8100,Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand,Add-AzNetworkInterfaceIpConfig,1,8100,Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand,New-AzNetworkInterfaceIpConfig,1,8100,New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand,Remove-AzNetworkInterfaceIpConfig,1,8100,Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand,Set-AzNetworkInterfaceIpConfig,1,8100,Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand,Get-AzNetworkWatcher,1,8510,"Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand,Start-AzNetworkWatcherResourceTroubleshooting,1,8100,Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand,New-AzPacketCaptureFilterConfig,1,8100,New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand,Remove-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand,Stop-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8600,Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8510,"Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmRouteTable,Get-AzRouteTable,1,8510,"Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable,Remove-AzRouteTable,1,8600,Cmdlet 'Remove-AzRouteTable' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8100,New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand,Get-AzRouteFilter,1,8510,"Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand,Remove-AzRouteFilter,1,8600,Cmdlet 'Remove-AzRouteFilter' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet,Test-AzPrivateIPAddressAvailability,1,8510,"Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand,Remove-AzPublicIpAddress,1,8600,Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand,Set-AzPublicIpAddress,1,8100,Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand,Add-AzVpnClientRootCertificate,1,8100,Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand,Add-AzVpnClientRevokedCertificate,1,8100,Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand,New-AzVpnClientRootCertificate,1,8100,New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand,New-AzVpnClientRevokedCertificate,1,8100,New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand,Resize-AzVirtualNetworkGateway,1,8100,Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8100,Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8100,Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8100,New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand,Add-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand,Remove-AzVirtualNetworkGateway,1,8600,Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand,Reset-AzVirtualNetworkGateway,1,8100,Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand,Set-AzVirtualNetworkGatewayDefaultSite,1,8100,Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand,Remove-AzVirtualNetworkGatewayDefaultSite,1,8100,Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand,Remove-AzLocalNetworkGateway,1,8600,Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand,Set-AzLocalNetworkGateway,1,8100,Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand,Remove-AzVirtualNetworkGatewayConnection,1,8600,Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand,Add-AzLoadBalancerBackendAddressPoolConfig,1,8100,Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand,New-AzLoadBalancerBackendAddressPoolConfig,1,8100,New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand,Remove-AzLoadBalancerBackendAddressPoolConfig,1,8100,Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8100,Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8100,Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8100,New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand,Remove-AzLoadBalancerFrontendIpConfig,1,8100,Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand,Get-AzLoadBalancer,1,8510,"Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8100,Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8100,Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8100,New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand,Remove-AzLoadBalancerInboundNatRuleConfig,1,8100,Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8100,Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8100,Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8100,New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand,Remove-AzLoadBalancerRuleConfig,1,8100,Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand,Set-AzLoadBalancerProbeConfig,1,8100,Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand,Add-AzLoadBalancerProbeConfig,1,8100,Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand,New-AzLoadBalancerProbeConfig,1,8100,New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand,Remove-AzLoadBalancerProbeConfig,1,8100,Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand,Remove-AzLoadBalancer,1,8600,Cmdlet 'Remove-AzLoadBalancer' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand,Set-AzLoadBalancer,1,8100,Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand,Remove-AzNetworkInterface,1,8600,Cmdlet 'Remove-AzNetworkInterface' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand,Set-AzNetworkInterface,1,8100,Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand,Get-AzNetworkSecurityGroup,1,8510,"Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand,New-AzNetworkSecurityRuleConfig,1,8100,New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand,Get-AzNetworkSecurityRuleConfig,1,8410,Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand,Remove-AzNetworkSecurityRuleConfig,1,8100,Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand,Set-AzNetworkSecurityRuleConfig,1,8100,Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand,Add-AzNetworkSecurityRuleConfig,1,8100,Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand,New-AzNetworkSecurityGroup,1,8410,Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand,Remove-AzNetworkSecurityGroup,1,8600,Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand,Set-AzNetworkSecurityGroup,1,8100,Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8100,Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand,Remove-AzVirtualNetworkPeering,1,8600,Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand,Set-AzVirtualNetworkPeering,1,8100,Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand,Remove-AzVirtualNetwork,1,8600,Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand,Set-AzVirtualNetwork,1,8100,Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand,Remove-AzVirtualNetworkSubnetConfig,1,8100,Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand,Set-AzVirtualNetworkSubnetConfig,1,8100,Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand,Add-AzVirtualNetworkSubnetConfig,1,8100,Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand,New-AzVirtualNetworkSubnetConfig,1,8100,New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation,Add-AzDelegation,1,8100,Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation,Remove-AzDelegation,1,8100,Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand,New-AzDelegation,1,8100,New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand,Get-AzVirtualNetwork,1,8510,"Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration,New-AzNetworkWatcherProtocolConfiguration,1,8100,New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan,Get-AzDdosProtectionPlan,1,8510,"Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand,Set-AzNetworkWatcherConfigFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand,Get-AzExpressRouteCrossConnectionArpTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand,Get-AzExpressRouteCrossConnectionRouteTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand,Get-AzExpressRouteCrossConnectionRouteTableSummary,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand,New-AzApplicationGatewayFirewallExclusionConfig,1,8100,New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand,Add-AzApplicationGatewayCustomError,1,8100,Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand,New-AzApplicationGatewayCustomError,1,8100,New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand,Remove-AzApplicationGatewayCustomError,1,8100,Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand,Set-AzApplicationGatewayCustomError,1,8100,Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand,Add-AzApplicationGatewayHttpListenerCustomError,1,8100,Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand,New-AzApplicationGatewayHttpListenerCustomError,1,8100,New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand,Remove-AzApplicationGatewayHttpListenerCustomError,1,8100,Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand,Set-AzApplicationGatewayHttpListenerCustomError,1,8100,Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand,New-AzVirtualHubRoute,1,8100,New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand,New-AzVirtualHubRouteTable,1,8100,New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort,New-AzExpressRoutePort,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand,New-AzApplicationGatewayRewriteRuleActionSet,1,8100,New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand,New-AzApplicationGatewayRewriteRuleHeaderConfiguration,1,8100,New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand,New-AzApplicationGatewayRewriteRuleCondition,1,8100,New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand,Add-AzApplicationGatewayRewriteRuleSet,1,8100,Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand,New-AzApplicationGatewayRewriteRuleSet,1,8100,New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand,Remove-AzApplicationGatewayRewriteRuleSet,1,8100,Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand,Set-AzApplicationGatewayRewriteRuleSet,1,8100,Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand,New-AzApplicationGatewayRewriteRule,1,8100,New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile,1,8100,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic,1,8100,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand,New-AzApplicationGatewayFirewallCondition,1,8100,New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand,New-AzApplicationGatewayFirewallCustomRule,1,8100,New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand,New-AzApplicationGatewayFirewallMatchVariable,1,8100,New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand,New-AzPrivateLinkServiceConnection,1,8100,New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection,Set-AzPrivateEndpointConnection,1,8100,Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration,New-AzPrivateLinkServiceIpConfig,1,8100,New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand,Set-AzPrivateEndpoint,1,8100,Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection,Approve-AzPrivateEndpointConnection,1,8100,Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection,Deny-AzPrivateEndpointConnection,1,8100,Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand,Set-AzPrivateLinkService,1,8100,Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand,New-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8100,New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8100,New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand,Update-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand,New-AzExpressRoutePortIdentity,1,8100,New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand,Remove-AzExpressRoutePortIdentity,1,8100,Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand,Set-AzExpressRoutePortIdentity,1,8100,Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand,New-AzFirewallPolicyApplicationRule,1,8100,New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand,New-AzFirewallPolicyFilterRuleCollection,1,8100,New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8100,New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand,Add-AzVirtualHubRoute,1,8100,Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand,New-AzFirewallThreatIntelWhitelist,1,8100,New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress,New-AzFirewallHubPublicIpAddress,1,8100,New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress,New-AzFirewallHubIpAddress,1,8100,New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress,New-AzFirewallPublicIpAddress,1,8100,New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand,New-AzApplicationGatewayFirewallPolicyExclusion,1,8100,New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand,New-AzApplicationGatewayFirewallPolicyManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8100,New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8510,"Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand,Get-AzIpAllocation,1,8510,"Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand,Remove-AzIpAllocation,1,8510,"Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8100,Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8510,"Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand,New-AzLocalNetworkGateway,1,8510,"Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand,New-AzNetworkWatcherConnectionMonitorEndpointObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand,New-AzNetworkWatcherConnectionMonitorObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand,New-AzNetworkWatcherConnectionMonitorTestConfigurationObject,1,8410,Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8100,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand,New-AzRadiusServer,1,8100,New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand,New-AzPrivateDnsZoneConfig,1,8100,New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand,Add-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand,New-AzApplicationGatewayPrivateLinkConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand,New-AzApplicationGatewayPrivateLinkIpConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand,Remove-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand,Set-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand,New-AzFirewallPolicyThreatIntelWhitelist,1,8100,New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8100,New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand,New-AzRoutingConfiguration,1,8100,New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand,New-AzStaticRoute,1,8100,New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand,New-AzVHubRoute,1,8100,New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand,New-AzOffice365PolicyProperty,1,8100,New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand,New-AzVirtualApplianceSkuProperty,1,8100,New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA,New-AzExpressRoutePortLOA,1,8100,New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand,New-AzO365PolicyProperty,1,8100,New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand,New-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand,Set-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet Set-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. From 2420ef08995d0ae149aed76b014197f0bc307bae Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Mon, 2 Nov 2020 17:47:12 -0800 Subject: [PATCH 6/7] Update StaticAnalysis results and Get-Az template --- .../help/Get-AzExpressRouteConnection.md | 14 +- .../Exceptions/Az.Network/SignatureIssues.csv | 750 +++++++++--------- 2 files changed, 383 insertions(+), 381 deletions(-) diff --git a/src/Network/Network/help/Get-AzExpressRouteConnection.md b/src/Network/Network/help/Get-AzExpressRouteConnection.md index 35ca4c05802f..d7c333f5b2bf 100644 --- a/src/Network/Network/help/Get-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Get-AzExpressRouteConnection.md @@ -150,7 +150,7 @@ This command will get all Connections in ExpressRoute "testExpressRoutegw" that The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -165,7 +165,7 @@ Accept wildcard characters: False The parent resource name. ```yaml -Type: String +Type: System.String Parameter Sets: ByExpressRouteGatewayName Aliases: @@ -180,7 +180,7 @@ Accept wildcard characters: False The parent ExpressRouteGateway for this connection. ```yaml -Type: PSExpressRouteGateway +Type: Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway Parameter Sets: ByExpressRouteGatewayObject Aliases: ExpressRouteGateway @@ -195,7 +195,7 @@ Accept wildcard characters: False The resource name. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: ResourceName, ExpressRouteConnectionName @@ -210,7 +210,7 @@ Accept wildcard characters: True The resource id of the parent ExpressRouteGateway for this connection. ```yaml -Type: String +Type: System.String Parameter Sets: ByExpressRouteGatewayResourceId Aliases: ExpressRouteGatewayId @@ -225,7 +225,7 @@ Accept wildcard characters: False The resource group name. ```yaml -Type: String +Type: System.String Parameter Sets: ByExpressRouteGatewayName Aliases: @@ -249,4 +249,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index db55cacfbe34..6931dddf772e 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -1,374 +1,376 @@ -"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand","New-AzVpnClientIpsecPolicy","1","8100","New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzVpnClientIpsecParameter","1","8100","New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8100","Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8100","New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSetting","1","8100","Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8100","Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand","Get-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand","New-AzApplicationGatewayConnectionDraining","1","8100","New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8100","Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8100","Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","New-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","Set-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand","New-AzApplicationGatewayProbeHealthResponseMatch","1","8100","New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8100","Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8100","New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand","Remove-AzApplicationGatewayFrontendIPConfig","1","8100","Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8100","Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand","Add-AzApplicationGatewayFrontendPort","1","8100","Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand","New-AzApplicationGatewayFrontendPort","1","8100","New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand","Remove-AzApplicationGatewayFrontendPort","1","8100","Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand","Set-AzApplicationGatewayFrontendPort","1","8100","Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8100","Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8100","New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand","Remove-AzApplicationGatewayIPConfiguration","1","8100","Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8100","Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8100","Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8100","New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand","Remove-AzApplicationGatewayHttpListener","1","8100","Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8100","Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8100","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8410","Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8100","New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8510","Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8100","Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8100","New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand","Remove-AzApplicationGatewayProbeConfig","1","8100","Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8100","Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand","Remove-AzApplicationGateway","1","8600","Cmdlet 'Remove-AzApplicationGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8100","Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8100","New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand","Remove-AzApplicationGatewayRedirectConfiguration","1","8100","Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8100","Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8100","Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8100","New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand","Remove-AzApplicationGatewayRequestRoutingRule","1","8100","Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8100","Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand","Set-AzApplicationGateway","1","8100","Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand","New-AzApplicationGatewaySku","1","8100","New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand","Set-AzApplicationGatewaySku","1","8100","Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand","Add-AzApplicationGatewaySslCertificate","1","8100","Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand","New-AzApplicationGatewaySslCertificate","1","8100","New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand","Remove-AzApplicationGatewaySslCertificate","1","8100","Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand","Set-AzApplicationGatewaySslCertificate","1","8100","Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand","New-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand","Set-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand","Start-AzApplicationGateway","1","8100","Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand","Stop-AzApplicationGateway","1","8100","Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8100","Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8100","New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand","Remove-AzApplicationGatewayUrlPathMapConfig","1","8100","Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8100","Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup","Remove-AzApplicationSecurityGroup","1","8600","Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan","Remove-AzDdosProtectionPlan","1","8600","Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand","Add-AzExpressRouteCircuitAuthorization","1","8100","Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand","New-AzExpressRouteCircuitAuthorization","1","8100","New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand","Remove-AzExpressRouteCircuitAuthorization","1","8100","Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8100","Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8100","New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand","Remove-AzLoadBalancerInboundNatPoolConfig","1","8100","Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8100","Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8100","Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8100","New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand","Remove-AzExpressRouteCircuitPeeringConfig","1","8100","Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8100","Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand","Remove-AzExpressRouteCircuit","1","8600","Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand","Set-AzExpressRouteCircuit","1","8100","Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand","Add-AzNetworkInterfaceIpConfig","1","8100","Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand","New-AzNetworkInterfaceIpConfig","1","8100","New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand","Remove-AzNetworkInterfaceIpConfig","1","8100","Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand","Set-AzNetworkInterfaceIpConfig","1","8100","Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand","Get-AzNetworkWatcher","1","8510","Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand","Start-AzNetworkWatcherResourceTroubleshooting","1","8100","Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand","New-AzPacketCaptureFilterConfig","1","8100","New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand","Remove-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand","Stop-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8600","Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8510","Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmRouteTable","Get-AzRouteTable","1","8510","Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable","Remove-AzRouteTable","1","8600","Cmdlet 'Remove-AzRouteTable' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8100","New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand","Get-AzRouteFilter","1","8510","Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand","Remove-AzRouteFilter","1","8600","Cmdlet 'Remove-AzRouteFilter' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet","Test-AzPrivateIPAddressAvailability","1","8510","Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand","Remove-AzPublicIpAddress","1","8600","Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand","Set-AzPublicIpAddress","1","8100","Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand","Add-AzVpnClientRootCertificate","1","8100","Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand","Add-AzVpnClientRevokedCertificate","1","8100","Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand","New-AzVpnClientRootCertificate","1","8100","New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand","New-AzVpnClientRevokedCertificate","1","8100","New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand","Resize-AzVirtualNetworkGateway","1","8100","Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8100","Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8100","Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8100","New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand","Add-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand","Remove-AzVirtualNetworkGateway","1","8600","Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand","Reset-AzVirtualNetworkGateway","1","8100","Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand","Set-AzVirtualNetworkGatewayDefaultSite","1","8100","Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand","Remove-AzVirtualNetworkGatewayDefaultSite","1","8100","Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand","Remove-AzLocalNetworkGateway","1","8600","Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand","Set-AzLocalNetworkGateway","1","8100","Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand","Remove-AzVirtualNetworkGatewayConnection","1","8600","Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand","Add-AzLoadBalancerBackendAddressPoolConfig","1","8100","Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand","New-AzLoadBalancerBackendAddressPoolConfig","1","8100","New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand","Remove-AzLoadBalancerBackendAddressPoolConfig","1","8100","Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8100","Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8100","Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8100","New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand","Remove-AzLoadBalancerFrontendIpConfig","1","8100","Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand","Get-AzLoadBalancer","1","8510","Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8100","Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8100","Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8100","New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand","Remove-AzLoadBalancerInboundNatRuleConfig","1","8100","Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8100","Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8100","Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8100","New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand","Remove-AzLoadBalancerRuleConfig","1","8100","Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand","Set-AzLoadBalancerProbeConfig","1","8100","Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand","Add-AzLoadBalancerProbeConfig","1","8100","Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand","New-AzLoadBalancerProbeConfig","1","8100","New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand","Remove-AzLoadBalancerProbeConfig","1","8100","Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand","Remove-AzLoadBalancer","1","8600","Cmdlet 'Remove-AzLoadBalancer' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand","Set-AzLoadBalancer","1","8100","Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand","Remove-AzNetworkInterface","1","8600","Cmdlet 'Remove-AzNetworkInterface' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand","Set-AzNetworkInterface","1","8100","Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand","Get-AzNetworkSecurityGroup","1","8510","Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand","New-AzNetworkSecurityRuleConfig","1","8100","New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand","Get-AzNetworkSecurityRuleConfig","1","8410","Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand","Remove-AzNetworkSecurityRuleConfig","1","8100","Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand","Set-AzNetworkSecurityRuleConfig","1","8100","Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand","Add-AzNetworkSecurityRuleConfig","1","8100","Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand","New-AzNetworkSecurityGroup","1","8410","Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand","Remove-AzNetworkSecurityGroup","1","8600","Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand","Set-AzNetworkSecurityGroup","1","8100","Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8100","Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand","Remove-AzVirtualNetworkPeering","1","8600","Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand","Set-AzVirtualNetworkPeering","1","8100","Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand","Remove-AzVirtualNetwork","1","8600","Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand","Set-AzVirtualNetwork","1","8100","Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand","Remove-AzVirtualNetworkSubnetConfig","1","8100","Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzVirtualNetworkSubnetConfig","1","8100","Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzVirtualNetworkSubnetConfig","1","8100","Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzVirtualNetworkSubnetConfig","1","8100","New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation","Add-AzDelegation","1","8100","Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation","Remove-AzDelegation","1","8100","Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand","New-AzDelegation","1","8100","New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzVirtualNetwork","1","8510","Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzNetworkWatcherProtocolConfiguration","1","8100","New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzDdosProtectionPlan","1","8510","Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand","Set-AzNetworkWatcherConfigFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand","Get-AzExpressRouteCrossConnectionArpTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand","Get-AzExpressRouteCrossConnectionRouteTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand","New-AzApplicationGatewayFirewallExclusionConfig","1","8100","New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand","Add-AzApplicationGatewayCustomError","1","8100","Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand","New-AzApplicationGatewayCustomError","1","8100","New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand","Remove-AzApplicationGatewayCustomError","1","8100","Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand","Set-AzApplicationGatewayCustomError","1","8100","Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand","Add-AzApplicationGatewayHttpListenerCustomError","1","8100","Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand","New-AzApplicationGatewayHttpListenerCustomError","1","8100","New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand","Remove-AzApplicationGatewayHttpListenerCustomError","1","8100","Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand","Set-AzApplicationGatewayHttpListenerCustomError","1","8100","Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand","New-AzVirtualHubRoute","1","8100","New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand","New-AzVirtualHubRouteTable","1","8100","New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort","New-AzExpressRoutePort","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand","New-AzApplicationGatewayRewriteRuleActionSet","1","8100","New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand","New-AzApplicationGatewayRewriteRuleHeaderConfiguration","1","8100","New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand","New-AzApplicationGatewayRewriteRuleCondition","1","8100","New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand","Add-AzApplicationGatewayRewriteRuleSet","1","8100","Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand","New-AzApplicationGatewayRewriteRuleSet","1","8100","New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand","Remove-AzApplicationGatewayRewriteRuleSet","1","8100","Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand","Set-AzApplicationGatewayRewriteRuleSet","1","8100","Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand","New-AzApplicationGatewayRewriteRule","1","8100","New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile","1","8100","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic","1","8100","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand","New-AzApplicationGatewayFirewallCondition","1","8100","New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand","New-AzApplicationGatewayFirewallCustomRule","1","8100","New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand","New-AzApplicationGatewayFirewallMatchVariable","1","8100","New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand","New-AzPrivateLinkServiceConnection","1","8100","New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection","Set-AzPrivateEndpointConnection","1","8100","Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration","New-AzPrivateLinkServiceIpConfig","1","8100","New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand","Set-AzPrivateEndpoint","1","8100","Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection","Approve-AzPrivateEndpointConnection","1","8100","Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection","Deny-AzPrivateEndpointConnection","1","8100","Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand","Set-AzPrivateLinkService","1","8100","Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand","New-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8100","New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8100","New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand","Update-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand","New-AzExpressRoutePortIdentity","1","8100","New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand","Remove-AzExpressRoutePortIdentity","1","8100","Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand","Set-AzExpressRoutePortIdentity","1","8100","Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand","New-AzFirewallPolicyApplicationRule","1","8100","New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand","New-AzFirewallPolicyFilterRuleCollection","1","8100","New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8100","New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand","Add-AzVirtualHubRoute","1","8100","Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand","New-AzFirewallThreatIntelWhitelist","1","8100","New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress","New-AzFirewallHubPublicIpAddress","1","8100","New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress","New-AzFirewallHubIpAddress","1","8100","New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress","New-AzFirewallPublicIpAddress","1","8100","New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand","New-AzApplicationGatewayFirewallPolicyExclusion","1","8100","New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleSet","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand","New-AzApplicationGatewayFirewallPolicyManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8100","New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8510","Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand","Get-AzIpAllocation","1","8510","Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand","Remove-AzIpAllocation","1","8510","Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8100","Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8510","Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand","New-AzLocalNetworkGateway","1","8510","Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand","New-AzNetworkWatcherConnectionMonitorEndpointObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand","New-AzNetworkWatcherConnectionMonitorObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand","New-AzNetworkWatcherConnectionMonitorTestConfigurationObject","1","8410","Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8100","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand","New-AzRadiusServer","1","8100","New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand","New-AzPrivateDnsZoneConfig","1","8100","New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand","Add-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand","New-AzApplicationGatewayPrivateLinkConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand","New-AzApplicationGatewayPrivateLinkIpConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand","Remove-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand","Set-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand","New-AzFirewallPolicyThreatIntelWhitelist","1","8100","New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8100","New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand","New-AzRoutingConfiguration","1","8100","New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand","New-AzStaticRoute","1","8100","New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand","New-AzVHubRoute","1","8100","New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8510","Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8510","Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand","New-AzOffice365PolicyProperty","1","8100","New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand","New-AzVirtualApplianceSkuProperty","1","8100","New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA","New-AzExpressRoutePortLOA","1","8100","New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand","New-AzO365PolicyProperty","1","8100","New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +AssemblyFileName,ClassName,Target,Severity,ProblemId,Description,Remediation +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand,New-AzVpnClientIpsecPolicy,1,8100,New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand,New-AzVpnClientIpsecParameter,1,8100,New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8100,Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8100,New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand,Remove-AzApplicationGatewayBackendHttpSetting,1,8100,Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8100,Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand,Get-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand,New-AzApplicationGatewayConnectionDraining,1,8100,New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8100,Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8100,Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,New-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,Set-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand,New-AzApplicationGatewayProbeHealthResponseMatch,1,8100,New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8100,Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8100,New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand,Remove-AzApplicationGatewayFrontendIPConfig,1,8100,Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8100,Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand,Add-AzApplicationGatewayFrontendPort,1,8100,Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand,New-AzApplicationGatewayFrontendPort,1,8100,New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand,Remove-AzApplicationGatewayFrontendPort,1,8100,Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand,Set-AzApplicationGatewayFrontendPort,1,8100,Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8100,Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8100,New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand,Remove-AzApplicationGatewayIPConfiguration,1,8100,Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8100,Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8100,Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8100,New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand,Remove-AzApplicationGatewayHttpListener,1,8100,Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8100,Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8100,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8410,Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8100,New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8100,Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8100,New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand,Remove-AzApplicationGatewayProbeConfig,1,8100,Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8100,Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand,Remove-AzApplicationGateway,1,8600,Cmdlet 'Remove-AzApplicationGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8100,Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8100,New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand,Remove-AzApplicationGatewayRedirectConfiguration,1,8100,Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8100,Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8100,Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8100,New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand,Remove-AzApplicationGatewayRequestRoutingRule,1,8100,Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8100,Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand,Set-AzApplicationGateway,1,8100,Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand,New-AzApplicationGatewaySku,1,8100,New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand,Set-AzApplicationGatewaySku,1,8100,Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand,Add-AzApplicationGatewaySslCertificate,1,8100,Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand,New-AzApplicationGatewaySslCertificate,1,8100,New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand,Remove-AzApplicationGatewaySslCertificate,1,8100,Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand,Set-AzApplicationGatewaySslCertificate,1,8100,Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand,New-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand,Set-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand,Start-AzApplicationGateway,1,8100,Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand,Stop-AzApplicationGateway,1,8100,Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8100,Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8100,New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand,Remove-AzApplicationGatewayUrlPathMapConfig,1,8100,Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8100,Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup,Remove-AzApplicationSecurityGroup,1,8600,Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan,Remove-AzDdosProtectionPlan,1,8600,Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand,Add-AzExpressRouteCircuitAuthorization,1,8100,Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand,New-AzExpressRouteCircuitAuthorization,1,8100,New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand,Remove-AzExpressRouteCircuitAuthorization,1,8100,Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8100,Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8100,New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand,Remove-AzLoadBalancerInboundNatPoolConfig,1,8100,Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8100,Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8100,Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8100,New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand,Remove-AzExpressRouteCircuitPeeringConfig,1,8100,Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8100,Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand,Remove-AzExpressRouteCircuit,1,8600,Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand,Set-AzExpressRouteCircuit,1,8100,Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand,Add-AzNetworkInterfaceIpConfig,1,8100,Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand,New-AzNetworkInterfaceIpConfig,1,8100,New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand,Remove-AzNetworkInterfaceIpConfig,1,8100,Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand,Set-AzNetworkInterfaceIpConfig,1,8100,Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand,Get-AzNetworkWatcher,1,8510,"Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand,Start-AzNetworkWatcherResourceTroubleshooting,1,8100,Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand,New-AzPacketCaptureFilterConfig,1,8100,New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand,Remove-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand,Stop-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8600,Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8510,"Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmRouteTable,Get-AzRouteTable,1,8510,"Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable,Remove-AzRouteTable,1,8600,Cmdlet 'Remove-AzRouteTable' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8100,New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand,Get-AzRouteFilter,1,8510,"Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand,Remove-AzRouteFilter,1,8600,Cmdlet 'Remove-AzRouteFilter' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet,Test-AzPrivateIPAddressAvailability,1,8510,"Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand,Remove-AzPublicIpAddress,1,8600,Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand,Set-AzPublicIpAddress,1,8100,Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand,Add-AzVpnClientRootCertificate,1,8100,Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand,Add-AzVpnClientRevokedCertificate,1,8100,Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand,New-AzVpnClientRootCertificate,1,8100,New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand,New-AzVpnClientRevokedCertificate,1,8100,New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand,Resize-AzVirtualNetworkGateway,1,8100,Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8100,Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8100,Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8100,New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand,Add-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand,Remove-AzVirtualNetworkGateway,1,8600,Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand,Reset-AzVirtualNetworkGateway,1,8100,Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand,Set-AzVirtualNetworkGatewayDefaultSite,1,8100,Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand,Remove-AzVirtualNetworkGatewayDefaultSite,1,8100,Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand,Remove-AzLocalNetworkGateway,1,8600,Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand,Set-AzLocalNetworkGateway,1,8100,Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand,Remove-AzVirtualNetworkGatewayConnection,1,8600,Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand,Add-AzLoadBalancerBackendAddressPoolConfig,1,8100,Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand,New-AzLoadBalancerBackendAddressPoolConfig,1,8100,New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand,Remove-AzLoadBalancerBackendAddressPoolConfig,1,8100,Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8100,Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8100,Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8100,New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand,Remove-AzLoadBalancerFrontendIpConfig,1,8100,Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand,Get-AzLoadBalancer,1,8510,"Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8100,Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8100,Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8100,New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand,Remove-AzLoadBalancerInboundNatRuleConfig,1,8100,Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8100,Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8100,Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8100,New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand,Remove-AzLoadBalancerRuleConfig,1,8100,Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand,Set-AzLoadBalancerProbeConfig,1,8100,Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand,Add-AzLoadBalancerProbeConfig,1,8100,Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand,New-AzLoadBalancerProbeConfig,1,8100,New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand,Remove-AzLoadBalancerProbeConfig,1,8100,Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand,Remove-AzLoadBalancer,1,8600,Cmdlet 'Remove-AzLoadBalancer' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand,Set-AzLoadBalancer,1,8100,Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand,Remove-AzNetworkInterface,1,8600,Cmdlet 'Remove-AzNetworkInterface' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand,Set-AzNetworkInterface,1,8100,Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand,Get-AzNetworkSecurityGroup,1,8510,"Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand,New-AzNetworkSecurityRuleConfig,1,8100,New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand,Get-AzNetworkSecurityRuleConfig,1,8410,Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand,Remove-AzNetworkSecurityRuleConfig,1,8100,Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand,Set-AzNetworkSecurityRuleConfig,1,8100,Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand,Add-AzNetworkSecurityRuleConfig,1,8100,Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand,New-AzNetworkSecurityGroup,1,8410,Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand,Remove-AzNetworkSecurityGroup,1,8600,Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand,Set-AzNetworkSecurityGroup,1,8100,Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8100,Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand,Remove-AzVirtualNetworkPeering,1,8600,Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand,Set-AzVirtualNetworkPeering,1,8100,Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand,Remove-AzVirtualNetwork,1,8600,Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand,Set-AzVirtualNetwork,1,8100,Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand,Remove-AzVirtualNetworkSubnetConfig,1,8100,Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand,Set-AzVirtualNetworkSubnetConfig,1,8100,Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand,Add-AzVirtualNetworkSubnetConfig,1,8100,Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand,New-AzVirtualNetworkSubnetConfig,1,8100,New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation,Add-AzDelegation,1,8100,Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation,Remove-AzDelegation,1,8100,Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand,New-AzDelegation,1,8100,New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand,Get-AzVirtualNetwork,1,8510,"Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration,New-AzNetworkWatcherProtocolConfiguration,1,8100,New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan,Get-AzDdosProtectionPlan,1,8510,"Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand,Set-AzNetworkWatcherConfigFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand,Get-AzExpressRouteCrossConnectionArpTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand,Get-AzExpressRouteCrossConnectionRouteTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand,Get-AzExpressRouteCrossConnectionRouteTableSummary,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand,New-AzApplicationGatewayFirewallExclusionConfig,1,8100,New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand,Add-AzApplicationGatewayCustomError,1,8100,Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand,New-AzApplicationGatewayCustomError,1,8100,New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand,Remove-AzApplicationGatewayCustomError,1,8100,Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand,Set-AzApplicationGatewayCustomError,1,8100,Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand,Add-AzApplicationGatewayHttpListenerCustomError,1,8100,Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand,New-AzApplicationGatewayHttpListenerCustomError,1,8100,New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand,Remove-AzApplicationGatewayHttpListenerCustomError,1,8100,Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand,Set-AzApplicationGatewayHttpListenerCustomError,1,8100,Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand,New-AzVirtualHubRoute,1,8100,New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand,New-AzVirtualHubRouteTable,1,8100,New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort,New-AzExpressRoutePort,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand,New-AzApplicationGatewayRewriteRuleActionSet,1,8100,New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand,New-AzApplicationGatewayRewriteRuleHeaderConfiguration,1,8100,New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand,New-AzApplicationGatewayRewriteRuleCondition,1,8100,New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand,Add-AzApplicationGatewayRewriteRuleSet,1,8100,Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand,New-AzApplicationGatewayRewriteRuleSet,1,8100,New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand,Remove-AzApplicationGatewayRewriteRuleSet,1,8100,Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand,Set-AzApplicationGatewayRewriteRuleSet,1,8100,Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand,New-AzApplicationGatewayRewriteRule,1,8100,New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile,1,8100,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic,1,8100,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand,New-AzApplicationGatewayFirewallCondition,1,8100,New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand,New-AzApplicationGatewayFirewallCustomRule,1,8100,New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand,New-AzApplicationGatewayFirewallMatchVariable,1,8100,New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand,New-AzPrivateLinkServiceConnection,1,8100,New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection,Set-AzPrivateEndpointConnection,1,8100,Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration,New-AzPrivateLinkServiceIpConfig,1,8100,New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand,Set-AzPrivateEndpoint,1,8100,Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection,Approve-AzPrivateEndpointConnection,1,8100,Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection,Deny-AzPrivateEndpointConnection,1,8100,Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand,Set-AzPrivateLinkService,1,8100,Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand,New-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8100,New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8100,New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand,Update-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand,New-AzExpressRoutePortIdentity,1,8100,New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand,Remove-AzExpressRoutePortIdentity,1,8100,Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand,Set-AzExpressRoutePortIdentity,1,8100,Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand,New-AzFirewallPolicyApplicationRule,1,8100,New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand,New-AzFirewallPolicyFilterRuleCollection,1,8100,New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8100,New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand,Add-AzVirtualHubRoute,1,8100,Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand,New-AzFirewallThreatIntelWhitelist,1,8100,New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress,New-AzFirewallHubPublicIpAddress,1,8100,New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress,New-AzFirewallHubIpAddress,1,8100,New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress,New-AzFirewallPublicIpAddress,1,8100,New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand,New-AzApplicationGatewayFirewallPolicyExclusion,1,8100,New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand,New-AzApplicationGatewayFirewallPolicyManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8100,New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8510,"Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand,Get-AzIpAllocation,1,8510,"Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand,Remove-AzIpAllocation,1,8510,"Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8100,Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8510,"Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand,New-AzLocalNetworkGateway,1,8510,"Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand,New-AzNetworkWatcherConnectionMonitorEndpointObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand,New-AzNetworkWatcherConnectionMonitorObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand,New-AzNetworkWatcherConnectionMonitorTestConfigurationObject,1,8410,Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8100,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand,New-AzRadiusServer,1,8100,New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand,New-AzPrivateDnsZoneConfig,1,8100,New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand,Add-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand,New-AzApplicationGatewayPrivateLinkConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand,New-AzApplicationGatewayPrivateLinkIpConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand,Remove-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand,Set-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand,New-AzFirewallPolicyThreatIntelWhitelist,1,8100,New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8100,New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand,New-AzRoutingConfiguration,1,8100,New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand,New-AzStaticRoute,1,8100,New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand,New-AzVHubRoute,1,8100,New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand,New-AzOffice365PolicyProperty,1,8100,New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand,New-AzVirtualApplianceSkuProperty,1,8100,New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA,New-AzExpressRoutePortLOA,1,8100,New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand,New-AzO365PolicyProperty,1,8100,New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand,New-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand,Set-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet Set-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. From 4dfc18cba0d01e2e5d8189e16059aab060c8e2b3 Mon Sep 17 00:00:00 2001 From: Sachet Hegde Date: Mon, 2 Nov 2020 23:43:41 -0800 Subject: [PATCH 7/7] Update Static analysis --- .../Exceptions/Az.Network/SignatureIssues.csv | 752 +++++++++--------- 1 file changed, 376 insertions(+), 376 deletions(-) diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 6931dddf772e..62bb8962e818 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -1,376 +1,376 @@ -AssemblyFileName,ClassName,Target,Severity,ProblemId,Description,Remediation -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand,New-AzVpnClientIpsecPolicy,1,8100,New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand,New-AzVpnClientIpsecParameter,1,8100,New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8100,Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8100,New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand,Remove-AzApplicationGatewayBackendHttpSetting,1,8100,Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8100,Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand,Get-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand,New-AzApplicationGatewayConnectionDraining,1,8100,New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8100,Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8100,Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,New-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,Set-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand,New-AzApplicationGatewayProbeHealthResponseMatch,1,8100,New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8100,Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8100,New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand,Remove-AzApplicationGatewayFrontendIPConfig,1,8100,Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8100,Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand,Add-AzApplicationGatewayFrontendPort,1,8100,Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand,New-AzApplicationGatewayFrontendPort,1,8100,New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand,Remove-AzApplicationGatewayFrontendPort,1,8100,Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand,Set-AzApplicationGatewayFrontendPort,1,8100,Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8100,Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8100,New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand,Remove-AzApplicationGatewayIPConfiguration,1,8100,Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8100,Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8100,Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8100,New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand,Remove-AzApplicationGatewayHttpListener,1,8100,Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8100,Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8100,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8410,Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8100,New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8100,Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8100,New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand,Remove-AzApplicationGatewayProbeConfig,1,8100,Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8100,Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand,Remove-AzApplicationGateway,1,8600,Cmdlet 'Remove-AzApplicationGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8100,Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8100,New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand,Remove-AzApplicationGatewayRedirectConfiguration,1,8100,Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8100,Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8100,Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8100,New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand,Remove-AzApplicationGatewayRequestRoutingRule,1,8100,Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8100,Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand,Set-AzApplicationGateway,1,8100,Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand,New-AzApplicationGatewaySku,1,8100,New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand,Set-AzApplicationGatewaySku,1,8100,Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand,Add-AzApplicationGatewaySslCertificate,1,8100,Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand,New-AzApplicationGatewaySslCertificate,1,8100,New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand,Remove-AzApplicationGatewaySslCertificate,1,8100,Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand,Set-AzApplicationGatewaySslCertificate,1,8100,Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand,New-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand,Set-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand,Start-AzApplicationGateway,1,8100,Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand,Stop-AzApplicationGateway,1,8100,Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8100,Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8100,New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand,Remove-AzApplicationGatewayUrlPathMapConfig,1,8100,Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8100,Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup,Remove-AzApplicationSecurityGroup,1,8600,Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan,Remove-AzDdosProtectionPlan,1,8600,Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand,Add-AzExpressRouteCircuitAuthorization,1,8100,Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand,New-AzExpressRouteCircuitAuthorization,1,8100,New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand,Remove-AzExpressRouteCircuitAuthorization,1,8100,Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8100,Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8100,New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand,Remove-AzLoadBalancerInboundNatPoolConfig,1,8100,Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8100,Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8100,Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8100,New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand,Remove-AzExpressRouteCircuitPeeringConfig,1,8100,Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8100,Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand,Remove-AzExpressRouteCircuit,1,8600,Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand,Set-AzExpressRouteCircuit,1,8100,Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand,Add-AzNetworkInterfaceIpConfig,1,8100,Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand,New-AzNetworkInterfaceIpConfig,1,8100,New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand,Remove-AzNetworkInterfaceIpConfig,1,8100,Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand,Set-AzNetworkInterfaceIpConfig,1,8100,Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand,Get-AzNetworkWatcher,1,8510,"Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand,Start-AzNetworkWatcherResourceTroubleshooting,1,8100,Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand,New-AzPacketCaptureFilterConfig,1,8100,New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand,Remove-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand,Stop-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8600,Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8510,"Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmRouteTable,Get-AzRouteTable,1,8510,"Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable,Remove-AzRouteTable,1,8600,Cmdlet 'Remove-AzRouteTable' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8100,New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand,Get-AzRouteFilter,1,8510,"Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand,Remove-AzRouteFilter,1,8600,Cmdlet 'Remove-AzRouteFilter' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet,Test-AzPrivateIPAddressAvailability,1,8510,"Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand,Remove-AzPublicIpAddress,1,8600,Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand,Set-AzPublicIpAddress,1,8100,Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand,Add-AzVpnClientRootCertificate,1,8100,Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand,Add-AzVpnClientRevokedCertificate,1,8100,Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand,New-AzVpnClientRootCertificate,1,8100,New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand,New-AzVpnClientRevokedCertificate,1,8100,New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand,Resize-AzVirtualNetworkGateway,1,8100,Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8100,Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8100,Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8100,New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand,Add-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand,Remove-AzVirtualNetworkGateway,1,8600,Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand,Reset-AzVirtualNetworkGateway,1,8100,Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand,Set-AzVirtualNetworkGatewayDefaultSite,1,8100,Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand,Remove-AzVirtualNetworkGatewayDefaultSite,1,8100,Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand,Remove-AzLocalNetworkGateway,1,8600,Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand,Set-AzLocalNetworkGateway,1,8100,Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand,Remove-AzVirtualNetworkGatewayConnection,1,8600,Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand,Add-AzLoadBalancerBackendAddressPoolConfig,1,8100,Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand,New-AzLoadBalancerBackendAddressPoolConfig,1,8100,New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand,Remove-AzLoadBalancerBackendAddressPoolConfig,1,8100,Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8100,Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8100,Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8100,New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand,Remove-AzLoadBalancerFrontendIpConfig,1,8100,Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand,Get-AzLoadBalancer,1,8510,"Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8100,Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8100,Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8100,New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand,Remove-AzLoadBalancerInboundNatRuleConfig,1,8100,Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8100,Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8100,Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8100,New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand,Remove-AzLoadBalancerRuleConfig,1,8100,Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand,Set-AzLoadBalancerProbeConfig,1,8100,Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand,Add-AzLoadBalancerProbeConfig,1,8100,Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand,New-AzLoadBalancerProbeConfig,1,8100,New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand,Remove-AzLoadBalancerProbeConfig,1,8100,Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand,Remove-AzLoadBalancer,1,8600,Cmdlet 'Remove-AzLoadBalancer' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand,Set-AzLoadBalancer,1,8100,Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand,Remove-AzNetworkInterface,1,8600,Cmdlet 'Remove-AzNetworkInterface' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand,Set-AzNetworkInterface,1,8100,Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand,Get-AzNetworkSecurityGroup,1,8510,"Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand,New-AzNetworkSecurityRuleConfig,1,8100,New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand,Get-AzNetworkSecurityRuleConfig,1,8410,Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand,Remove-AzNetworkSecurityRuleConfig,1,8100,Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand,Set-AzNetworkSecurityRuleConfig,1,8100,Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand,Add-AzNetworkSecurityRuleConfig,1,8100,Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand,New-AzNetworkSecurityGroup,1,8410,Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand,Remove-AzNetworkSecurityGroup,1,8600,Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand,Set-AzNetworkSecurityGroup,1,8100,Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8100,Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand,Remove-AzVirtualNetworkPeering,1,8600,Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand,Set-AzVirtualNetworkPeering,1,8100,Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand,Remove-AzVirtualNetwork,1,8600,Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand,Set-AzVirtualNetwork,1,8100,Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand,Remove-AzVirtualNetworkSubnetConfig,1,8100,Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand,Set-AzVirtualNetworkSubnetConfig,1,8100,Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand,Add-AzVirtualNetworkSubnetConfig,1,8100,Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand,New-AzVirtualNetworkSubnetConfig,1,8100,New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation,Add-AzDelegation,1,8100,Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation,Remove-AzDelegation,1,8100,Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand,New-AzDelegation,1,8100,New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand,Get-AzVirtualNetwork,1,8510,"Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration,New-AzNetworkWatcherProtocolConfiguration,1,8100,New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan,Get-AzDdosProtectionPlan,1,8510,"Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand,Set-AzNetworkWatcherConfigFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand,Get-AzExpressRouteCrossConnectionArpTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand,Get-AzExpressRouteCrossConnectionRouteTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand,Get-AzExpressRouteCrossConnectionRouteTableSummary,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand,New-AzApplicationGatewayFirewallExclusionConfig,1,8100,New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand,Add-AzApplicationGatewayCustomError,1,8100,Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand,New-AzApplicationGatewayCustomError,1,8100,New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand,Remove-AzApplicationGatewayCustomError,1,8100,Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand,Set-AzApplicationGatewayCustomError,1,8100,Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand,Add-AzApplicationGatewayHttpListenerCustomError,1,8100,Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand,New-AzApplicationGatewayHttpListenerCustomError,1,8100,New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand,Remove-AzApplicationGatewayHttpListenerCustomError,1,8100,Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand,Set-AzApplicationGatewayHttpListenerCustomError,1,8100,Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand,New-AzVirtualHubRoute,1,8100,New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand,New-AzVirtualHubRouteTable,1,8100,New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort,New-AzExpressRoutePort,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand,New-AzApplicationGatewayRewriteRuleActionSet,1,8100,New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand,New-AzApplicationGatewayRewriteRuleHeaderConfiguration,1,8100,New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand,New-AzApplicationGatewayRewriteRuleCondition,1,8100,New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand,Add-AzApplicationGatewayRewriteRuleSet,1,8100,Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand,New-AzApplicationGatewayRewriteRuleSet,1,8100,New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand,Remove-AzApplicationGatewayRewriteRuleSet,1,8100,Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand,Set-AzApplicationGatewayRewriteRuleSet,1,8100,Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand,New-AzApplicationGatewayRewriteRule,1,8100,New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile,1,8100,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic,1,8100,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand,New-AzApplicationGatewayFirewallCondition,1,8100,New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand,New-AzApplicationGatewayFirewallCustomRule,1,8100,New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand,New-AzApplicationGatewayFirewallMatchVariable,1,8100,New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand,New-AzPrivateLinkServiceConnection,1,8100,New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection,Set-AzPrivateEndpointConnection,1,8100,Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration,New-AzPrivateLinkServiceIpConfig,1,8100,New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand,Set-AzPrivateEndpoint,1,8100,Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection,Approve-AzPrivateEndpointConnection,1,8100,Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection,Deny-AzPrivateEndpointConnection,1,8100,Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand,Set-AzPrivateLinkService,1,8100,Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand,New-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8100,New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8100,New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand,Update-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand,New-AzExpressRoutePortIdentity,1,8100,New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand,Remove-AzExpressRoutePortIdentity,1,8100,Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand,Set-AzExpressRoutePortIdentity,1,8100,Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand,New-AzFirewallPolicyApplicationRule,1,8100,New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand,New-AzFirewallPolicyFilterRuleCollection,1,8100,New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8100,New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand,Add-AzVirtualHubRoute,1,8100,Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand,New-AzFirewallThreatIntelWhitelist,1,8100,New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress,New-AzFirewallHubPublicIpAddress,1,8100,New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress,New-AzFirewallHubIpAddress,1,8100,New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress,New-AzFirewallPublicIpAddress,1,8100,New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand,New-AzApplicationGatewayFirewallPolicyExclusion,1,8100,New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand,New-AzApplicationGatewayFirewallPolicyManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8100,New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8510,"Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand,Get-AzIpAllocation,1,8510,"Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand,Remove-AzIpAllocation,1,8510,"Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8100,Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8510,"Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand,New-AzLocalNetworkGateway,1,8510,"Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand,New-AzNetworkWatcherConnectionMonitorEndpointObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand,New-AzNetworkWatcherConnectionMonitorObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand,New-AzNetworkWatcherConnectionMonitorTestConfigurationObject,1,8410,Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8100,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand,New-AzRadiusServer,1,8100,New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand,New-AzPrivateDnsZoneConfig,1,8100,New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand,Add-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand,New-AzApplicationGatewayPrivateLinkConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand,New-AzApplicationGatewayPrivateLinkIpConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand,Remove-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand,Set-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand,New-AzFirewallPolicyThreatIntelWhitelist,1,8100,New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8100,New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand,New-AzRoutingConfiguration,1,8100,New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand,New-AzStaticRoute,1,8100,New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand,New-AzVHubRoute,1,8100,New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand,New-AzOffice365PolicyProperty,1,8100,New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand,New-AzVirtualApplianceSkuProperty,1,8100,New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA,New-AzExpressRoutePortLOA,1,8100,New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand,New-AzO365PolicyProperty,1,8100,New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand,New-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand,Set-AzExpressRouteConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet Set-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand","New-AzVpnClientIpsecPolicy","1","8100","New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzVpnClientIpsecParameter","1","8100","New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8100","Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8100","New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSetting","1","8100","Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8100","Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand","Get-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand","New-AzApplicationGatewayConnectionDraining","1","8100","New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8100","Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8100","Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","New-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","Set-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand","New-AzApplicationGatewayProbeHealthResponseMatch","1","8100","New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8100","Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8100","New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand","Remove-AzApplicationGatewayFrontendIPConfig","1","8100","Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8100","Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand","Add-AzApplicationGatewayFrontendPort","1","8100","Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand","New-AzApplicationGatewayFrontendPort","1","8100","New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand","Remove-AzApplicationGatewayFrontendPort","1","8100","Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand","Set-AzApplicationGatewayFrontendPort","1","8100","Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8100","Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8100","New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand","Remove-AzApplicationGatewayIPConfiguration","1","8100","Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8100","Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8100","Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8100","New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand","Remove-AzApplicationGatewayHttpListener","1","8100","Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8100","Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8100","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8410","Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8100","New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8510","Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8100","Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8100","New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand","Remove-AzApplicationGatewayProbeConfig","1","8100","Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8100","Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand","Remove-AzApplicationGateway","1","8600","Cmdlet 'Remove-AzApplicationGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8100","Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8100","New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand","Remove-AzApplicationGatewayRedirectConfiguration","1","8100","Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8100","Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8100","Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8100","New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand","Remove-AzApplicationGatewayRequestRoutingRule","1","8100","Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8100","Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand","Set-AzApplicationGateway","1","8100","Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand","New-AzApplicationGatewaySku","1","8100","New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand","Set-AzApplicationGatewaySku","1","8100","Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand","Add-AzApplicationGatewaySslCertificate","1","8100","Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand","New-AzApplicationGatewaySslCertificate","1","8100","New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand","Remove-AzApplicationGatewaySslCertificate","1","8100","Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand","Set-AzApplicationGatewaySslCertificate","1","8100","Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand","New-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand","Set-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand","Start-AzApplicationGateway","1","8100","Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand","Stop-AzApplicationGateway","1","8100","Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8100","Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8100","New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand","Remove-AzApplicationGatewayUrlPathMapConfig","1","8100","Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8100","Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup","Remove-AzApplicationSecurityGroup","1","8600","Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan","Remove-AzDdosProtectionPlan","1","8600","Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand","Add-AzExpressRouteCircuitAuthorization","1","8100","Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand","New-AzExpressRouteCircuitAuthorization","1","8100","New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand","Remove-AzExpressRouteCircuitAuthorization","1","8100","Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8100","Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8100","New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand","Remove-AzLoadBalancerInboundNatPoolConfig","1","8100","Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8100","Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8100","Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8100","New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand","Remove-AzExpressRouteCircuitPeeringConfig","1","8100","Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8100","Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand","Remove-AzExpressRouteCircuit","1","8600","Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand","Set-AzExpressRouteCircuit","1","8100","Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand","Add-AzNetworkInterfaceIpConfig","1","8100","Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand","New-AzNetworkInterfaceIpConfig","1","8100","New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand","Remove-AzNetworkInterfaceIpConfig","1","8100","Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand","Set-AzNetworkInterfaceIpConfig","1","8100","Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand","Get-AzNetworkWatcher","1","8510","Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand","Start-AzNetworkWatcherResourceTroubleshooting","1","8100","Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand","New-AzPacketCaptureFilterConfig","1","8100","New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand","Remove-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand","Stop-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8600","Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8510","Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmRouteTable","Get-AzRouteTable","1","8510","Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable","Remove-AzRouteTable","1","8600","Cmdlet 'Remove-AzRouteTable' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8100","New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand","Get-AzRouteFilter","1","8510","Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand","Remove-AzRouteFilter","1","8600","Cmdlet 'Remove-AzRouteFilter' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet","Test-AzPrivateIPAddressAvailability","1","8510","Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand","Remove-AzPublicIpAddress","1","8600","Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand","Set-AzPublicIpAddress","1","8100","Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand","Add-AzVpnClientRootCertificate","1","8100","Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand","Add-AzVpnClientRevokedCertificate","1","8100","Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand","New-AzVpnClientRootCertificate","1","8100","New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand","New-AzVpnClientRevokedCertificate","1","8100","New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand","Resize-AzVirtualNetworkGateway","1","8100","Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8100","Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8100","Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8100","New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand","Add-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand","Remove-AzVirtualNetworkGateway","1","8600","Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand","Reset-AzVirtualNetworkGateway","1","8100","Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand","Set-AzVirtualNetworkGatewayDefaultSite","1","8100","Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand","Remove-AzVirtualNetworkGatewayDefaultSite","1","8100","Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand","Remove-AzLocalNetworkGateway","1","8600","Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand","Set-AzLocalNetworkGateway","1","8100","Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand","Remove-AzVirtualNetworkGatewayConnection","1","8600","Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand","Add-AzLoadBalancerBackendAddressPoolConfig","1","8100","Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand","New-AzLoadBalancerBackendAddressPoolConfig","1","8100","New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand","Remove-AzLoadBalancerBackendAddressPoolConfig","1","8100","Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8100","Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8100","Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8100","New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand","Remove-AzLoadBalancerFrontendIpConfig","1","8100","Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand","Get-AzLoadBalancer","1","8510","Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8100","Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8100","Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8100","New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand","Remove-AzLoadBalancerInboundNatRuleConfig","1","8100","Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8100","Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8100","Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8100","New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand","Remove-AzLoadBalancerRuleConfig","1","8100","Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand","Set-AzLoadBalancerProbeConfig","1","8100","Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand","Add-AzLoadBalancerProbeConfig","1","8100","Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand","New-AzLoadBalancerProbeConfig","1","8100","New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand","Remove-AzLoadBalancerProbeConfig","1","8100","Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand","Remove-AzLoadBalancer","1","8600","Cmdlet 'Remove-AzLoadBalancer' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand","Set-AzLoadBalancer","1","8100","Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand","Remove-AzNetworkInterface","1","8600","Cmdlet 'Remove-AzNetworkInterface' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand","Set-AzNetworkInterface","1","8100","Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand","Get-AzNetworkSecurityGroup","1","8510","Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand","New-AzNetworkSecurityRuleConfig","1","8100","New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand","Get-AzNetworkSecurityRuleConfig","1","8410","Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand","Remove-AzNetworkSecurityRuleConfig","1","8100","Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand","Set-AzNetworkSecurityRuleConfig","1","8100","Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand","Add-AzNetworkSecurityRuleConfig","1","8100","Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand","New-AzNetworkSecurityGroup","1","8410","Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand","Remove-AzNetworkSecurityGroup","1","8600","Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand","Set-AzNetworkSecurityGroup","1","8100","Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8100","Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand","Remove-AzVirtualNetworkPeering","1","8600","Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand","Set-AzVirtualNetworkPeering","1","8100","Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand","Remove-AzVirtualNetwork","1","8600","Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand","Set-AzVirtualNetwork","1","8100","Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand","Remove-AzVirtualNetworkSubnetConfig","1","8100","Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzVirtualNetworkSubnetConfig","1","8100","Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzVirtualNetworkSubnetConfig","1","8100","Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzVirtualNetworkSubnetConfig","1","8100","New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation","Add-AzDelegation","1","8100","Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation","Remove-AzDelegation","1","8100","Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand","New-AzDelegation","1","8100","New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzVirtualNetwork","1","8510","Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzNetworkWatcherProtocolConfiguration","1","8100","New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzDdosProtectionPlan","1","8510","Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand","Set-AzNetworkWatcherConfigFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand","Get-AzExpressRouteCrossConnectionArpTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand","Get-AzExpressRouteCrossConnectionRouteTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand","New-AzApplicationGatewayFirewallExclusionConfig","1","8100","New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand","Add-AzApplicationGatewayCustomError","1","8100","Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand","New-AzApplicationGatewayCustomError","1","8100","New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand","Remove-AzApplicationGatewayCustomError","1","8100","Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand","Set-AzApplicationGatewayCustomError","1","8100","Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand","Add-AzApplicationGatewayHttpListenerCustomError","1","8100","Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand","New-AzApplicationGatewayHttpListenerCustomError","1","8100","New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand","Remove-AzApplicationGatewayHttpListenerCustomError","1","8100","Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand","Set-AzApplicationGatewayHttpListenerCustomError","1","8100","Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand","New-AzVirtualHubRoute","1","8100","New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand","New-AzVirtualHubRouteTable","1","8100","New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort","New-AzExpressRoutePort","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand","New-AzApplicationGatewayRewriteRuleActionSet","1","8100","New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand","New-AzApplicationGatewayRewriteRuleHeaderConfiguration","1","8100","New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand","New-AzApplicationGatewayRewriteRuleCondition","1","8100","New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand","Add-AzApplicationGatewayRewriteRuleSet","1","8100","Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand","New-AzApplicationGatewayRewriteRuleSet","1","8100","New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand","Remove-AzApplicationGatewayRewriteRuleSet","1","8100","Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand","Set-AzApplicationGatewayRewriteRuleSet","1","8100","Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand","New-AzApplicationGatewayRewriteRule","1","8100","New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile","1","8100","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic","1","8100","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand","New-AzApplicationGatewayFirewallCondition","1","8100","New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand","New-AzApplicationGatewayFirewallCustomRule","1","8100","New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand","New-AzApplicationGatewayFirewallMatchVariable","1","8100","New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand","New-AzPrivateLinkServiceConnection","1","8100","New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection","Set-AzPrivateEndpointConnection","1","8100","Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration","New-AzPrivateLinkServiceIpConfig","1","8100","New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand","Set-AzPrivateEndpoint","1","8100","Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection","Approve-AzPrivateEndpointConnection","1","8100","Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection","Deny-AzPrivateEndpointConnection","1","8100","Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand","Set-AzPrivateLinkService","1","8100","Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand","New-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8100","New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8100","New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand","Update-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand","New-AzExpressRoutePortIdentity","1","8100","New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand","Remove-AzExpressRoutePortIdentity","1","8100","Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand","Set-AzExpressRoutePortIdentity","1","8100","Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand","New-AzFirewallPolicyApplicationRule","1","8100","New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand","New-AzFirewallPolicyFilterRuleCollection","1","8100","New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8100","New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand","Add-AzVirtualHubRoute","1","8100","Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand","New-AzFirewallThreatIntelWhitelist","1","8100","New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress","New-AzFirewallHubPublicIpAddress","1","8100","New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress","New-AzFirewallHubIpAddress","1","8100","New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress","New-AzFirewallPublicIpAddress","1","8100","New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand","New-AzApplicationGatewayFirewallPolicyExclusion","1","8100","New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleSet","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand","New-AzApplicationGatewayFirewallPolicyManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8100","New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8510","Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand","Get-AzIpAllocation","1","8510","Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand","Remove-AzIpAllocation","1","8510","Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8100","Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8510","Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand","New-AzLocalNetworkGateway","1","8510","Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand","New-AzNetworkWatcherConnectionMonitorEndpointObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand","New-AzNetworkWatcherConnectionMonitorObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand","New-AzNetworkWatcherConnectionMonitorTestConfigurationObject","1","8410","Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8100","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand","New-AzRadiusServer","1","8100","New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand","New-AzPrivateDnsZoneConfig","1","8100","New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand","Add-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand","New-AzApplicationGatewayPrivateLinkConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand","New-AzApplicationGatewayPrivateLinkIpConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand","Remove-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand","Set-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand","New-AzFirewallPolicyThreatIntelWhitelist","1","8100","New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8100","New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand","New-AzRoutingConfiguration","1","8100","New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand","New-AzStaticRoute","1","8100","New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand","New-AzVHubRoute","1","8100","New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8510","Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8510","Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand","New-AzOffice365PolicyProperty","1","8100","New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand","New-AzVirtualApplianceSkuProperty","1","8100","New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA","New-AzExpressRoutePortLOA","1","8100","New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand","New-AzO365PolicyProperty","1","8100","New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand","New-AzExpressRouteConnection","1","8410","Parameter ExpressRouteGatewayBypass of cmdlet New-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand","Set-AzExpressRouteConnection","1","8410","Parameter ExpressRouteGatewayBypass of cmdlet Set-AzExpressRouteConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." \ No newline at end of file