load_balancer_network_interfaces
Creates, updates, deletes, gets or lists a load_balancer_network_interfaces
resource.
Overview
Name | load_balancer_network_interfaces |
Type | Resource |
Id | azure.network.load_balancer_network_interfaces |
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 | NetworkInterface properties. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | loadBalancerName, resourceGroupName, subscriptionId | Gets associated load balancer network interfaces. |
SELECT
examples
Gets associated load balancer network interfaces.
SELECT
id,
name,
etag,
extendedLocation,
location,
properties,
tags,
type
FROM azure.network.load_balancer_network_interfaces
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';