express_route_circuits_arp_tables
Creates, updates, deletes, gets or lists a express_route_circuits_arp_tables
resource.
Overview
Name | express_route_circuits_arp_tables |
Type | Resource |
Id | azure.network.express_route_circuits_arp_tables |
Fields
Name | Datatype | Description |
---|---|---|
age | integer | Entry age in minutes. |
interface | string | Interface address. |
ipAddress | string | The IP address. |
macAddress | string | The MAC address. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | circuitName, devicePath, peeringName, resourceGroupName, subscriptionId | Gets the currently advertised ARP table associated with the express route circuit in a resource group. |
SELECT
examples
Gets the currently advertised ARP table associated with the express route circuit in a resource group.
SELECT
age,
interface,
ipAddress,
macAddress
FROM azure.network.express_route_circuits_arp_tables
WHERE circuitName = '{{ circuitName }}'
AND devicePath = '{{ devicePath }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';