download
Creates, updates, deletes, gets or lists a download resource.
Overview
| Name | download |
| Type | Resource |
| Id | cloudflare.intel.download |
Fields
The following fields are returned by SELECT queries:
- list
Get indicator feed metadata
| Name | Datatype | Description |
|---|---|---|
file_id | integer | Feed id |
filename | string | Name of the file unified in our system (example: snapshot_file.unified) |
status | string | Current status of upload, should be unified (example: unified) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, feed_id | Downloads the content of 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
Downloads the content of a custom threat indicator feed.
SELECT
file_id,
filename,
status
FROM cloudflare.intel.download
WHERE account_id = '{{ account_id }}' -- required
AND feed_id = '{{ feed_id }}' -- required
;