asn_full_report
Creates, updates, deletes, gets or lists an asn_full_report resource.
Overview
| Name | asn_full_report |
| Type | Resource |
| Id | cloudflare.botnet_feed.asn_full_report |
Fields
The following fields are returned by SELECT queries:
- list
Get full botnet feed report
| Name | Datatype | Description |
|---|---|---|
cidr | string | |
date | string (date-time) | |
offense_count | integer |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, asn_id | Gets all the data the botnet threat feed tracking database has for a given ASN registered to user account. |
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 |
|---|---|---|
account_id | string | The Cloudflare account ID. |
asn_id | integer |
SELECT examples
- list
Gets all the data the botnet threat feed tracking database has for a given ASN registered to user account.
SELECT
cidr,
date,
offense_count
FROM cloudflare.botnet_feed.asn_full_report
WHERE account_id = '{{ account_id }}' -- required
AND asn_id = '{{ asn_id }}' -- required
;