entities_asns
Creates, updates, deletes, gets or lists an entities_asns resource.
Overview
| Name | entities_asns |
| Type | Resource |
| Id | cloudflare.radar.entities_asns |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
name | string | |
aka | string | |
asn | integer | |
country | string | |
countryName | string | |
orgName | string | |
website | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | limit, offset, asn, location, orderBy, format | Retrieves a list of autonomous systems. |
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 | string | Filters results by Autonomous System. Specify one or more Autonomous System Numbers (ASNs) as a comma-separated list. |
format | string | Format in which results will be returned. |
limit | integer | Limits the number of objects returned in the response. |
location | string | Filters results by location. Specify an alpha-2 location code. |
offset | integer | Skips the specified number of objects before fetching the results. |
orderBy | string | Specifies the metric to order the ASNs by. |
SELECT examples
- list
Retrieves a list of autonomous systems.
SELECT
name,
aka,
asn,
country,
countryName,
orgName,
website
FROM cloudflare.radar.entities_asns
WHERE limit = '{{ limit }}'
AND offset = '{{ offset }}'
AND asn = '{{ asn }}'
AND location = '{{ location }}'
AND orderBy = '{{ orderBy }}'
AND format = '{{ format }}'
;