asns
Creates, updates, deletes, gets or lists an asns resource.
Overview
| Name | asns |
| Type | Resource |
| Id | cloudflare.radar.asns |
Fields
The following fields are returned by SELECT queries:
- get
Successful response.
| Name | Datatype | Description |
|---|---|---|
asn | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | asn | format | Retrieves the requested autonomous system information. (A confidence level below 5 indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). |
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 | Single Autonomous System Number (ASN) as integer. |
format | string | Format in which results will be returned. |
SELECT examples
- get
Retrieves the requested autonomous system information. (A confidence level below 5 indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526).
SELECT
asn
FROM cloudflare.radar.asns
WHERE asn = '{{ asn }}' -- required
AND format = '{{ format }}'
;