Skip to main content

load_balancer_outbound_rules

Creates, updates, deletes, gets or lists a load_balancer_outbound_rules resource.

Overview

Nameload_balancer_outbound_rules
TypeResource
Idazure.network.load_balancer_outbound_rules

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the resulting OutboundRule resource.

NameDatatypeDescription
idstringResource ID.
namestringThe name of the resource that is unique within the set of outbound rules used by the load balancer. This name can be used to access the resource.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of load balancer outbound rule.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, loadBalancerName, outboundRuleName, subscriptionIdGets the specified load balancer outbound rule.
listselectresourceGroupName, loadBalancerName, subscriptionIdGets all the outbound rules in a load balancer.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
loadBalancerNamestringThe name of the load balancer.
outboundRuleNamestringThe name of the outbound rule.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets the specified load balancer outbound rule.

SELECT
id,
name,
etag,
properties,
type
FROM azure.network.load_balancer_outbound_rules
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND loadBalancerName = '{{ loadBalancerName }}' -- required
AND outboundRuleName = '{{ outboundRuleName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;