datas
Creates, updates, deletes, gets or lists a datas resource.
Overview
| Name | datas |
| Type | Resource |
| Id | cloudflare.intel.datas |
Fields
The following fields are returned by SELECT queries:
- list
Get indicator feed metadata
| Name | Datatype | Description |
|---|---|---|
contents | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, feed_id | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
feed_id | string | The Intel indicator feed ID. |
SELECT examples
- list
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
;