Get-AzApplicationGatewayListener

Gets the TCP\TLS listener of an application gateway.

Syntax

Get-AzApplicationGatewayListener
   [-Name <String>]
   -ApplicationGateway <PSApplicationGateway>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

The Get-AzApplicationGatewayListener cmdlet gets the TCP\TLS listener of an application gateway.

Examples

Example 1: Get a specific TCP\TLS listener

$Appgw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$Listener = Get-AzApplicationGatewayListener -Name "Listener01" -ApplicationGateway $Appgw

This command gets a TCP\TLS listener named Listener01.

Example 2: Get a list of TCP\TLS listeners

$Appgw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$Listeners = Get-AzApplicationGatewayListener -ApplicationGateway $Appgw

This command gets a list of TCP\TLS listeners.

Parameters

-ApplicationGateway

The applicationGateway

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

-DefaultProfile

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

Type:IAzureContextContainer
Aliases:AzContext, AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

The name of the application gateway listener

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

Inputs

PSApplicationGateway

Outputs

PSApplicationGatewayListener