load_balancer_load_balancing_rules
Creates, updates, deletes, gets or lists a load_balancer_load_balancing_rules
resource.
Overview
Name | load_balancer_load_balancing_rules |
Type | Resource |
Id | azure.network.load_balancer_load_balancing_rules |
Fields
- vw_load_balancer_load_balancing_rules
- load_balancer_load_balancing_rules
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The 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_pool | text | field from the properties object |
backend_address_pools | text | field from the properties object |
backend_port | text | field from the properties object |
disable_outbound_snat | text | field from the properties object |
enable_floating_ip | text | field from the properties object |
enable_tcp_reset | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
frontend_ip_configuration | text | field from the properties object |
frontend_port | text | field from the properties object |
idle_timeout_in_minutes | text | field from the properties object |
loadBalancerName | text | field from the properties object |
loadBalancingRuleName | text | field from the properties object |
load_distribution | text | field from the properties object |
probe | text | field from the properties object |
protocol | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The 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. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of the load balancer. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | loadBalancerName, loadBalancingRuleName, resourceGroupName, subscriptionId | Gets the specified load balancer load balancing rule. |
list | SELECT | loadBalancerName, resourceGroupName, subscriptionId | Gets all the load balancing rules in a load balancer. |
SELECT
examples
Gets all the load balancing rules in a load balancer.
- vw_load_balancer_load_balancing_rules
- load_balancer_load_balancing_rules
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 }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.load_balancer_load_balancing_rules
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';