Skip to main content

express_route_cross_connections_arp_tables

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

Overview

Nameexpress_route_cross_connections_arp_tables
TypeResource
Idazure.network.express_route_cross_connections_arp_tables

Fields

NameDatatypeDescription
ageintegerEntry age in minutes.
interfacestringInterface address.
ipAddressstringThe IP address.
macAddressstringThe MAC address.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcrossConnectionName, devicePath, peeringName, resourceGroupName, subscriptionIdGets the currently advertised ARP table associated with the express route cross connection in a resource group.

SELECT examples

Gets the currently advertised ARP table associated with the express route cross connection in a resource group.

SELECT
age,
interface,
ipAddress,
macAddress
FROM azure.network.express_route_cross_connections_arp_tables
WHERE crossConnectionName = '{{ crossConnectionName }}'
AND devicePath = '{{ devicePath }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';