< Back

Remove-AzureRmLoadBalancerProbeConfig

Tue Jan 29, 2019 9:57 pm

NAME Remove-AzureRmLoadBalancerProbeConfig



SYNOPSIS

Removes a probe configuration from a load balancer.





SYNTAX

Remove-AzureRmLoadBalancerProbeConfig [-DefaultProfile <IAzureContextContainer>] -LoadBalancer <PSLoadBalancer> [-Name <String>]

[<CommonParameters>]





DESCRIPTION

The Remove-AzureRmLoadBalancerProbeConfig cmdlet removes a probe configuration from 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 contains the probe configuration that this cmdlet removes.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-Name <String>

Specifies the name of the probe configuration that this cmdlet removes.



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.PSLoadBalancer







NOTES









Example 1: Remove a probe configuration from a load balancer



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

PS C:> Remove-AzureRmLoadBalancerProbeConfig -Name "MyProbe" -LoadBalancer $loadbalancer



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



The second command deletes the configuration named MyProbe from the load balancer in $loadbalancer.







RELATED LINKS

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

Add-AzureRmLoadBalancerProbeConfig

Get-AzureRmLoadBalancer

Get-AzureRmLoadBalancerProbeConfig

New-AzureRmLoadBalancerProbeConfig

Set-AzureRmLoadBalancerProbeConfig