Skip to main content

load_balancer_network_interfaces

Creates, updates, deletes, gets or lists a load_balancer_network_interfaces resource.

Overview

Nameload_balancer_network_interfaces
TypeResource
Idazure.network.load_balancer_network_interfaces

Fields

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
extendedLocationobjectExtendedLocation complex type.
locationstringResource location.
propertiesobjectNetworkInterface properties.
tagsobjectResource tags.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTloadBalancerName, resourceGroupName, subscriptionIdGets 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 }}';