< Back

Get-AzureRmLoadBalancerFrontendIpConfig

Tue Jan 29, 2019 9:54 pm

NAME Get-AzureRmLoadBalancerFrontendIpConfig



SYNOPSIS

Gets a front-end IP configuration in a load balancer.





SYNTAX

Get-AzureRmLoadBalancerFrontendIpConfig [-DefaultProfile <IAzureContextContainer>] -LoadBalancer <PSLoadBalancer> [-Name <String>]

[<CommonParameters>]





DESCRIPTION

The Get-AzureRmLoadBalancerFrontendIpConfig cmdlet gets a front-end IP configuration or a list of front-end IP configurations in a load balancer.





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



-LoadBalancer <PSLoadBalancer>

Specifies the load balancer that is associated with the front-end IP configuration to get.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-Name <String>

Specifies the name of the load balancer that contains the front-end IP configuration to get.



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

PSLoadBalancer

Parameter 'LoadBalancer' accepts value of type 'PSLoadBalancer' from the pipeline





OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration







NOTES









Example 1: Get a front-end IP configuration in a load balancer



PS C:\\>$slb = Get-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup"

PS C:\\> Get-AzureRmLoadBalancerFrontendIpConfig -Name "MyFrontEnd" -LoadBalancer $slb



The first command gets the load balancer named MyLoadBalancer, and then stores it in the variable $slb.



The second command gets the front end IP configuration associated with that load balancer.







RELATED LINKS

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

Add-AzureRmLoadBalancerFrontendIpConfig

Get-AzureRmLoadBalancer

New-AzureRmLoadBalancerFrontendIpConfig

Remove-AzureRmLoadBalancerFrontendIpConfig

Set-AzureRmLoadBalancerFrontendIpConfig