Skip to main content

aspa_changes

Creates, updates, deletes, gets or lists an aspa_changes resource.

Overview

Nameaspa_changes
TypeResource
Idcloudflare.radar.aspa_changes

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
asnInfoobject
changesarray
metaobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdateStart, dateEnd, asn, includeAsnInfo, formatRetrieves ASPA (Autonomous System Provider Authorization) changes over time. Returns daily aggregated changes including additions, removals, and modifications of ASPA objects.

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
asnintegerFilter changes involving this ASN (as customer or provider).
dateEndstring (date-time)End of the date range (inclusive).
dateStartstring (date-time)Start of the date range (inclusive).
formatstringFormat in which results will be returned.
includeAsnInfobooleanInclude ASN metadata (name, country) in response.

SELECT examples

Retrieves ASPA (Autonomous System Provider Authorization) changes over time. Returns daily aggregated changes including additions, removals, and modifications of ASPA objects.

SELECT
asnInfo,
changes,
meta
FROM cloudflare.radar.aspa_changes
WHERE dateStart = '{{ dateStart }}'
AND dateEnd = '{{ dateEnd }}'
AND asn = '{{ asn }}'
AND includeAsnInfo = '{{ includeAsnInfo }}'
AND format = '{{ format }}'
;