Skip to content

Latest commit

 

History

History
92 lines (65 loc) · 3.29 KB

Get-AzureRmApplicationGatewayConnectionDraining.md

File metadata and controls

92 lines (65 loc) · 3.29 KB
external help file Module Name online version schema
Microsoft.Azure.Commands.Network.dll-Help.xml
AzureRM.Network
2.0.0

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.

EXAMPLES

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.

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.IAzureContextContainer
Parameter Sets: (All)
Aliases: 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 (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings

Parameters: BackendHttpSettings (ByValue)

OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining

NOTES

RELATED LINKS

Get-AzureRmApplicationGateway

Get-AzureRmApplicationGatewayBackendHttpSettings

New-AzureRmApplicationGatewayConnectionDraining

Remove-AzureRmApplicationGatewayConnectionDraining

Set-AzureRmApplicationGatewayConnectionDraining