interfaces_effective_route_tables
Creates, updates, deletes, gets or lists a interfaces_effective_route_tables
resource.
Overview
Name | interfaces_effective_route_tables |
Type | Resource |
Id | azure.network.interfaces_effective_route_tables |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the user defined route. This is optional. |
addressPrefix | array | The address prefixes of the effective routes in CIDR notation. |
disableBgpRoutePropagation | boolean | If true, on-premises routes are not propagated to the network interfaces in the subnet. |
nextHopIpAddress | array | The IP address of the next hop of the effective route. |
nextHopType | string | The type of Azure hop the packet should be sent to. |
source | string | Who created the route. |
state | string | The value of effective route. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | networkInterfaceName, resourceGroupName, subscriptionId | Gets all route tables applied to a network interface. |
SELECT
examples
Gets all route tables applied to a network interface.
SELECT
name,
addressPrefix,
disableBgpRoutePropagation,
nextHopIpAddress,
nextHopType,
source,
state
FROM azure.network.interfaces_effective_route_tables
WHERE networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';