aspa_changes
Creates, updates, deletes, gets or lists an aspa_changes resource.
Overview
| Name | aspa_changes |
| Type | Resource |
| Id | cloudflare.radar.aspa_changes |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
asnInfo | object | |
changes | array | |
meta | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | dateStart, dateEnd, asn, includeAsnInfo, format | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
asn | integer | Filter changes involving this ASN (as customer or provider). |
dateEnd | string (date-time) | End of the date range (inclusive). |
dateStart | string (date-time) | Start of the date range (inclusive). |
format | string | Format in which results will be returned. |
includeAsnInfo | boolean | Include ASN metadata (name, country) in response. |
SELECT examples
- list
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 }}'
;