load_balancer_outbound_rules
Creates, updates, deletes, gets or lists a load_balancer_outbound_rules
resource.
Overview
Name | load_balancer_outbound_rules |
Type | Resource |
Id | azure.network.load_balancer_outbound_rules |
Fields
- vw_load_balancer_outbound_rules
- load_balancer_outbound_rules
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The 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_ports | text | field from the properties object |
backend_address_pool | 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_configurations | text | field from the properties object |
idle_timeout_in_minutes | text | field from the properties object |
loadBalancerName | text | field from the properties object |
outboundRuleName | 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 outbound 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 | Outbound rule of the load balancer. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | loadBalancerName, outboundRuleName, resourceGroupName, subscriptionId | Gets the specified load balancer outbound rule. |
list | SELECT | loadBalancerName, resourceGroupName, subscriptionId | Gets all the outbound rules in a load balancer. |
SELECT
examples
Gets all the outbound rules in a load balancer.
- vw_load_balancer_outbound_rules
- load_balancer_outbound_rules
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 }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.load_balancer_outbound_rules
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';