Skip to main content

intel_indicator_feeds

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

Overview

Nameintel_indicator_feeds
TypeResource
Idcloudflare.intel.intel_indicator_feeds

Fields

The following fields are returned by SELECT queries:

Get indicator feeds response

NameDatatypeDescription
idintegerThe unique identifier for the indicator feed
namestringThe name of the indicator feed
created_onstring (date-time)The date and time when the data entry was created
descriptionstringThe description of the example test
is_attributablebooleanWhether the indicator feed can be attributed to a provider
is_downloadablebooleanWhether the indicator feed can be downloaded
is_publicbooleanWhether the indicator feed is exposed to customers
modified_onstring (date-time)The date and time when the data entry was last modified

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_accountselectaccount_idRetrieves details for all accessible custom threat indicator feeds.

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.

SELECT examples

Retrieves details for all accessible custom threat indicator feeds.

SELECT
id,
name,
created_on,
description,
is_attributable,
is_downloadable,
is_public,
modified_on
FROM cloudflare.intel.intel_indicator_feeds
WHERE account_id = '{{ account_id }}' -- required
;