< Back

Get-AzureRmApplicationGateway

Tue Jan 29, 2019 9:53 pm

NAME Get-AzureRmApplicationGateway



SYNOPSIS

Gets an application gateway.





SYNTAX

Get-AzureRmApplicationGateway [-DefaultProfile <IAzureContextContainer>] [-Name <String>] [-ResourceGroupName <String>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmApplicationGateway cmdlet gets an application gateway.





PARAMETERS

-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



-Name <String>

Specifies the name of the application gateway that this cmdlet gets.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of the resource group that contains the application gateway.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

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

System.String







OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGateway







NOTES









Example 1: Get a specified application gateway



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



This command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the

$AppGw variable.





Example 2: Get a list of application gateways in a resource group



PS C:\\>$AppGwList = Get-AzureRmApplicationGateway -ResourceGroupName "ResourceGroup01"



This command gets a list of all the application gateways in the resource group named ResourceGroup01 and stores it in the $AppGwList variable.





Example 3: Get a list of application gateways in a subscription



PS C:\\>$AppGwList = Get-AzureRmApplicationGateway



This command gets a list of all the application gateways in the subscription and stores it in the $AppGwList variable.







RELATED LINKS

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

Stop-AzureRmApplicationGateway