rp_unbilled_prefixes
Creates, updates, deletes, gets or lists a rp_unbilled_prefixes resource.
Overview
| Name | rp_unbilled_prefixes |
| Type | Resource |
| Id | azure.peering.rp_unbilled_prefixes |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
azureRegion | string | The Azure region. |
peerAsn | integer (int32) | The peer ASN. |
prefix | string | The prefix. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resourceGroupName, peeringName, subscriptionId | consolidate | Lists 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.
| Name | Datatype | Description |
|---|---|---|
peeringName | string | The peering name. |
resourceGroupName | string | The Azure resource group name. |
subscriptionId | string | The Azure subscription ID. |
consolidate | boolean | Flag to enable consolidation prefixes |
SELECT examples
- list
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 }}'
;