< Back

Get-AzureRmApplicationGatewayConnectionDraining

Tue Jan 29, 2019 9:53 pm

NAME Get-AzureRmApplicationGatewayConnectionDraining



SYNOPSIS

Gets the connection draining configuration of a back-end HTTP settings object.





SYNTAX

Get-AzureRmApplicationGatewayConnectionDraining -BackendHttpSettings <PSApplicationGatewayBackendHttpSettings> [-DefaultProfile

<IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmApplicationGatewayConnectionDraining cmdlet gets the connection draining configuration of a back-end HTTP settings object.





PARAMETERS

-BackendHttpSettings <PSApplicationGatewayBackendHttpSettings>

The backend http settings



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings







OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining







NOTES









Example 1



PS C:\\> $AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"

PS C:\\> $Settings = Get-AzureRmApplicationGatewayBackendHttpSettings -Name "Settings01" -ApplicationGateway $AppGw

PS C:\\> $ConnectionDraining = Get-AzureRmApplicationGatewayConnectionDraining -BackendHttpSettings $Settings



The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01 and stores it in the $AppGw

variable. The second command gets the back-end HTTP settings named Settings01 for $AppGw and stores the settings in the $Settings variable. The

last command gets the connection draining configuration from the back-end HTTP settings $Settings and stores it in the $ConnectionDraining

variable.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... ondraining

Get-AzureRmApplicationGatewayAvailableSslOptions

Get-AzureRmApplicationGatewayBackendHttpSettings

New-AzureRmApplicationGatewayConnectionDraining

Remove-AzureRmApplicationGatewayConnectionDraining

Set-AzureRmApplicationGatewayConnectionDraining