Skip to content

Latest commit

 

History

History
91 lines (64 loc) · 3.16 KB

Get-AzApplicationGatewayConnectionDraining.md

File metadata and controls

91 lines (64 loc) · 3.16 KB
external help file Module Name online version schema
Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
Az.Network
2.0.0

Get-AzApplicationGatewayConnectionDraining

SYNOPSIS

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

SYNTAX

Get-AzApplicationGatewayConnectionDraining -BackendHttpSettings <PSApplicationGatewayBackendHttpSettings>
 [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]

DESCRIPTION

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

EXAMPLES

Example 1

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$Settings  = Get-AzApplicationGatewayBackendHttpSetting -Name "Settings01" -ApplicationGateway $AppGw
$ConnectionDraining = Get-AzApplicationGatewayConnectionDraining -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.

PARAMETERS

-BackendHttpSettings

The backend http settings

Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-DefaultProfile

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

Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings

OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining

NOTES

RELATED LINKS

Get-AzApplicationGateway

Get-AzApplicationGatewayBackendHttpSetting

New-AzApplicationGatewayConnectionDraining

Remove-AzApplicationGatewayConnectionDraining

Set-AzApplicationGatewayConnectionDraining