Skip to main content

cdn_peering_prefixes

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

Overview

Namecdn_peering_prefixes
TypeResource
Idazure.peering.cdn_peering_prefixes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
propertiesobjectThe properties that define a cdn peering prefix.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectpeeringLocation, subscriptionIdLists all of the advertised prefixes for the specified peering location

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
peeringLocationstringThe peering location.
subscriptionIdstringThe Azure subscription ID.

SELECT examples

Lists all of the advertised prefixes for the specified peering location

SELECT
id,
name,
properties,
type
FROM azure.peering.cdn_peering_prefixes
WHERE peeringLocation = '{{ peeringLocation }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;