< Back

Get-AzureRmApplicationGatewayFrontendIPConfig

Tue Jan 29, 2019 9:53 pm

NAME Get-AzureRmApplicationGatewayFrontendIPConfig



SYNOPSIS

Gets the front-end IP configuration of an application gateway.





SYNTAX

Get-AzureRmApplicationGatewayFrontendIPConfig -ApplicationGateway <PSApplicationGateway> [-DefaultProfile <IAzureContextContainer>] [-Name

<String>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmApplicationGatewayFrontendIPConfig cmdlet gets the front-end IP configuration of an application gateway.





PARAMETERS

-ApplicationGateway <PSApplicationGateway>

Specifies the application gateway object that contains the front-end IP configuration.



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



-Name <String>

Specifies the name of the front-end IP configuration that this cmdlet gets.



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

System.String







OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration







NOTES









Example 1: Get a specified front-end IP configuration



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

PS C:\\> $FrontEndIP= Get-AzureRmApplicationGatewayFrontendIPConfig -Name "FrontEndIP01" -ApplicationGateway $AppGw



The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the

$AppGw variable.The second command gets the front-end IP configuration named FrontEndIP01 from $AppGw and stores it in the $FrontEndIP variable.





Example 2: Get a list of front-end IP configurations



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

PS C:\\> $FrontEndIPs= Get-AzureRmApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw



The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the

$AppGw variable.The second command gets a list of the front-end IP configurations from $AppGw and stores it in the $FrontEndIPs variable.







RELATED LINKS

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

Add-AzureRmApplicationGatewayFrontendIPConfig

New-AzureRmApplicationGatewayFrontendIPConfig

Remove-AzureRmApplicationGatewayFrontendIPConfig

Set-AzureRmApplicationGatewayFrontendIPConfig