sinkholes
Creates, updates, deletes, gets or lists a sinkholes resource.
Overview
| Name | sinkholes |
| Type | Resource |
| Id | cloudflare.intel.sinkholes |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | integer | The unique identifier for the sinkhole |
name | string | The name of the sinkhole |
r2_id | string | The id of the R2 instance |
account_tag | string | The account tag that owns this sinkhole |
created_on | string (date-time) | The date and time when the sinkhole was created |
modified_on | string (date-time) | The date and time when the sinkhole was last modified |
r2_bucket | string | The name of the R2 bucket to store results |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
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
;