Skip to main content

rp_unbilled_prefixes

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

Overview

Namerp_unbilled_prefixes
TypeResource
Idazure.peering.rp_unbilled_prefixes

Fields

NameDatatypeDescription
azureRegionstringThe Azure region.
peerAsnintegerThe peer ASN.
prefixstringThe prefix.

Methods

NameAccessible byRequired ParamsDescription
listSELECTpeeringName, resourceGroupName, subscriptionIdLists all of the RP unbilled prefixes for the specified peering

SELECT examples

Lists all of the RP unbilled prefixes for the specified peering

SELECT
azureRegion,
peerAsn,
prefix
FROM azure.peering.rp_unbilled_prefixes
WHERE peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';