< Back

Get-AzureRmLoadBalancerBackendAddressPoolConfig

Tue Jan 29, 2019 9:54 pm

NAME Get-AzureRmLoadBalancerBackendAddressPoolConfig



SYNOPSIS

Gets a backend address pool configuration for a load balancer.





SYNTAX

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

[<CommonParameters>]





DESCRIPTION

The Get-AzureRmLoadBalancerBackendAddressPoolConfig cmdlet gets a single backend address pool or a list of backend address pools within 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 backend address pool 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 backend address pool 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.PSBackendAddressPool







NOTES









Example 1: Get the backend address pool



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

PS C:\\> Get-AzureRmLoadBalancerBackendAddressPoolConfig -Name "BackendAddressPool02" -LoadBalancer $loadbalancer



The first command gets an existing load balancer named MyLoadBalancer in the resource group named MyResourceGroup, and then stores it in the

$loadbalancer variable.



The second command gets the associated backend address pool configuration named BackendAddressPool02 for the load balancer in $loadbalancer.







RELATED LINKS

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

Add-AzureRmLoadBalancerBackendAddressPoolConfig

Get-AzureRmLoadBalancer

New-AzureRmLoadBalancerBackendAddressPoolConfig

Remove-AzureRmLoadBalancerBackendAddressPoolConfig