Skip to main content

datas

Creates, updates, deletes, gets or lists a datas resource.

Overview

Namedatas
TypeResource
Idcloudflare.intel.datas

Fields

The following fields are returned by SELECT queries:

Get indicator feed metadata

NameDatatypeDescription
contentsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, feed_idRetrieves the raw data entries in a custom threat indicator feed.

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.
feed_idstringThe Intel indicator feed ID.

SELECT examples

Retrieves the raw data entries in a custom threat indicator feed.

SELECT
contents
FROM cloudflare.intel.datas
WHERE account_id = '{{ account_id }}' -- required
AND feed_id = '{{ feed_id }}' -- required
;