< Back

Remove-AzureRmLoadBalancerInboundNatRuleConfig

Tue Jan 29, 2019 9:57 pm

NAME Remove-AzureRmLoadBalancerInboundNatRuleConfig



SYNOPSIS

Removes an inbound NAT rule configuration from a load balancer.





SYNTAX

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

[<CommonParameters>]





DESCRIPTION

The Remove-AzureRmLoadBalancerInboundNatRuleConfig cmdlet removes an inbound network address translation (NAT) rule configuration from an Azure

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 LoadBalancer object that contains the inbound NAT rule 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 inbound NAT rule 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









1: Delete an inbound NAT rule from an Azure load balancer



$loadbalancer = Get-AzureRmLoadBalancer -Name mylb -ResourceGroupName myrg



Remove-AzureRmLoadBalancerInboundNatRuleConfig -Name "myinboundnatrule" -LoadBalancer $loadbalancer



The first command loads an already existing load balancer called "mylb" and stores it in the variable $load balancer. The second command

removes the inbound NAT rule associated with this load balancer.







RELATED LINKS

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

Add-AzureRmLoadBalancerInboundNatRuleConfig

Get-AzureRmLoadBalancerInboundNatRuleConfig

New-AzureRmLoadBalancerInboundNatRuleConfig

Set-AzureRmLoadBalancerInboundNatRuleConfig