interface_load_balancers
Creates, updates, deletes, gets or lists a interface_load_balancers
resource.
Overview
Name | interface_load_balancers |
Type | Resource |
Id | azure.network.interface_load_balancers |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
extendedLocation | object | ExtendedLocation complex type. |
location | string | Resource location. |
properties | object | Properties of the load balancer. |
sku | object | SKU of a load balancer. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | networkInterfaceName, resourceGroupName, subscriptionId | List all load balancers in a network interface. |
SELECT
examples
List all load balancers in a network interface.
SELECT
id,
name,
etag,
extendedLocation,
location,
properties,
sku,
tags,
type
FROM azure.network.interface_load_balancers
WHERE networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';