Skip to main content

sinkholes

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

Overview

Namesinkholes
TypeResource
Idcloudflare.intel.sinkholes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idintegerThe unique identifier for the sinkhole
namestringThe name of the sinkhole
r2_idstringThe id of the R2 instance
account_tagstringThe account tag that owns this sinkhole
created_onstring (date-time)The date and time when the sinkhole was created
modified_onstring (date-time)The date and time when the sinkhole was last modified
r2_bucketstringThe name of the R2 bucket to store results

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id

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

Successful Response

SELECT
id,
name,
r2_id,
account_tag,
created_on,
modified_on,
r2_bucket
FROM cloudflare.intel.sinkholes
WHERE account_id = '{{ account_id }}' -- required
;