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

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of NetworkInterface resources.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
etagstringA unique read-only string that changes whenever the resource is updated.
extendedLocationobjectThe extended location of the network interface.
propertiesobjectProperties of the network interface.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, loadBalancerName, subscriptionIdGets associated load balancer network interfaces.

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.

NameDatatypeDescription
loadBalancerNamestringThe name of the load balancer.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets associated load balancer network interfaces.

SELECT
id,
name,
etag,
extendedLocation,
properties,
systemData,
type
FROM azure.network.load_balancer_network_interfaces
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND loadBalancerName = '{{ loadBalancerName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;