Skip to main content

received_routes

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

Overview

Namereceived_routes
TypeResource
Idazure.peering.received_routes

Fields

NameDatatypeDescription
asPathstringThe AS path for the prefix.
nextHopstringThe next hop for the prefix.
originAsValidationStatestringThe origin AS change information for the prefix.
prefixstringThe prefix.
receivedTimestampstringThe received timestamp associated with the prefix.
rpkiValidationStatestringThe RPKI validation state for the prefix and origin AS that's listed in the AS path.
trustAnchorstringThe authority which holds the Route Origin Authorization record for the prefix, if any.

Methods

NameAccessible byRequired ParamsDescription
list_by_peeringSELECTpeeringName, resourceGroupName, subscriptionIdLists 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 }}';