Skip to main content

interface_load_balancers

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

Overview

Nameinterface_load_balancers
TypeResource
Idazure.network.interface_load_balancers

Fields

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
extendedLocationobjectExtendedLocation complex type.
locationstringResource location.
propertiesobjectProperties of the load balancer.
skuobjectSKU of a load balancer.
tagsobjectResource tags.
typestringResource type.

Methods

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