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

The following fields are returned by SELECT queries:

NameDatatypeDescription
azureRegionstringThe Azure region.
peerAsninteger (int32)The peer ASN.
prefixstringThe prefix.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, peeringName, subscriptionIdconsolidateLists all of the RP unbilled prefixes for the specified peering

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
peeringNamestringThe peering name.
resourceGroupNamestringThe Azure resource group name.
subscriptionIdstringThe Azure subscription ID.
consolidatebooleanFlag to enable consolidation prefixes

SELECT examples

Lists all of the RP unbilled prefixes for the specified peering

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