Skip to main content

asn_full_report

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

Overview

Nameasn_full_report
TypeResource
Idcloudflare.botnet_feed.asn_full_report

Fields

The following fields are returned by SELECT queries:

Get full botnet feed report

NameDatatypeDescription
cidrstring
datestring (date-time)
offense_countinteger

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, asn_idGets 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
asn_idinteger

SELECT examples

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
;