received_routes
Creates, updates, deletes, gets or lists a received_routes
resource.
Overview
Name | received_routes |
Type | Resource |
Id | azure.peering.received_routes |
Fields
Name | Datatype | Description |
---|---|---|
asPath | string | The AS path for the prefix. |
nextHop | string | The next hop for the prefix. |
originAsValidationState | string | The origin AS change information for the prefix. |
prefix | string | The prefix. |
receivedTimestamp | string | The received timestamp associated with the prefix. |
rpkiValidationState | string | The RPKI validation state for the prefix and origin AS that's listed in the AS path. |
trustAnchor | string | The authority which holds the Route Origin Authorization record for the prefix, if any. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_peering | SELECT | peeringName, resourceGroupName, subscriptionId | Lists the prefixes received over the specified peering under the given subscription and resource group. |
SELECT
examples
Lists the prefixes received over the specified peering under the given subscription and resource group.
SELECT
asPath,
nextHop,
originAsValidationState,
prefix,
receivedTimestamp,
rpkiValidationState,
trustAnchor
FROM azure.peering.received_routes
WHERE peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';