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
The following fields are returned by SELECT
queries:
- get
- list
Request successful. The operation returns the resulting LoadBalancingRule 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 load balancer load balancing rule. |
type | string | Type of the resource. |
Request successful. The operation returns a list of LoadBalancer LoadBalancingRule resources.
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 load balancer load balancing rule. |
type | string | Type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , loadBalancerName , loadBalancingRuleName , subscriptionId | Gets the specified load balancer load balancing rule. | |
list | select | resourceGroupName , loadBalancerName , subscriptionId | Gets all the load balancing 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.
Name | Datatype | Description |
---|---|---|
loadBalancerName | string | The name of the load balancer. |
loadBalancingRuleName | string | The name of the load balancing rule. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
Gets the specified load balancer load balancing rule.
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.load_balancer_load_balancing_rules
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND loadBalancerName = '{{ loadBalancerName }}' -- required
AND loadBalancingRuleName = '{{ loadBalancingRuleName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Gets all the load balancing rules in a load balancer.
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.load_balancer_load_balancing_rules
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND loadBalancerName = '{{ loadBalancerName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;