Skip to main content

load_balancer_load_balancing_rules

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

Overview

Nameload_balancer_load_balancing_rules
TypeResource
Idazure.network.load_balancer_load_balancing_rules

Fields

NameDatatypeDescription
idtextResource ID.
nametextThe name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.
backend_address_pooltextfield from the properties object
backend_address_poolstextfield from the properties object
backend_porttextfield from the properties object
disable_outbound_snattextfield from the properties object
enable_floating_iptextfield 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_configurationtextfield from the properties object
frontend_porttextfield from the properties object
idle_timeout_in_minutestextfield from the properties object
loadBalancerNametextfield from the properties object
loadBalancingRuleNametextfield from the properties object
load_distributiontextfield from the properties object
probetextfield 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, loadBalancingRuleName, resourceGroupName, subscriptionIdGets the specified load balancer load balancing rule.
listSELECTloadBalancerName, resourceGroupName, subscriptionIdGets all the load balancing rules in a load balancer.

SELECT examples

Gets all the load balancing rules in a load balancer.

SELECT
id,
name,
backend_address_pool,
backend_address_pools,
backend_port,
disable_outbound_snat,
enable_floating_ip,
enable_tcp_reset,
etag,
frontend_ip_configuration,
frontend_port,
idle_timeout_in_minutes,
loadBalancerName,
loadBalancingRuleName,
load_distribution,
probe,
protocol,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.network.vw_load_balancer_load_balancing_rules
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';