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

NameDatatypeDescription
idtextResource ID.
nametextThe 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.
allocated_outbound_portstextfield from the properties object
backend_address_pooltextfield from the properties object
enable_tcp_resettextfield from the properties object
etagtextA unique read-only string that changes whenever the resource is updated.
frontend_ip_configurationstextfield from the properties object
idle_timeout_in_minutestextfield from the properties object
loadBalancerNametextfield from the properties object
outboundRuleNametextfield from the properties object
protocoltextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTloadBalancerName, outboundRuleName, resourceGroupName, subscriptionIdGets the specified load balancer outbound rule.
listSELECTloadBalancerName, resourceGroupName, subscriptionIdGets all the outbound rules in a load balancer.

SELECT examples

Gets all the outbound rules in a load balancer.

SELECT
id,
name,
allocated_outbound_ports,
backend_address_pool,
enable_tcp_reset,
etag,
frontend_ip_configurations,
idle_timeout_in_minutes,
loadBalancerName,
outboundRuleName,
protocol,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.network.vw_load_balancer_outbound_rules
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';