dataset_indicators
Creates, updates, deletes, gets or lists a dataset_indicators resource.
Overview
| Name | dataset_indicators |
| Type | Resource |
| Id | cloudflare.cloudforce_one.dataset_indicators |
Fields
The following fields are returned by SELECT queries:
- list_by_account
Returns a list of indicators.
| Name | Datatype | Description |
|---|---|---|
createdAt | string (date-time) | |
datasetId | string | The dataset ID this indicator belongs to. Included in list responses. |
indicatorType | string | |
relatedEvents | array | |
tags | array | |
updatedAt | string (date-time) | |
uuid | string | |
value | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_account | select | account_id, dataset_id | page, pageSize, name, indicatorType, relatedEvent | This method is deprecated. Please use /events/indicators to retrieve a paginated list of indicators. |
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. |
dataset_id | string | The dataset ID. |
indicatorType | string | |
name | string | Filter by indicator value (substring match) |
page | number | |
pageSize | number | |
relatedEvent | array | Filter indicators by related event UUID(s). Multiple UUIDs can be provided by repeating the parameter. |
SELECT examples
- list_by_account
This method is deprecated. Please use /events/indicators to retrieve a paginated list of indicators.
SELECT
createdAt,
datasetId,
indicatorType,
relatedEvents,
tags,
updatedAt,
uuid,
value
FROM cloudflare.cloudforce_one.dataset_indicators
WHERE account_id = '{{ account_id }}' -- required
AND dataset_id = '{{ dataset_id }}' -- required
AND page = '{{ page }}'
AND pageSize = '{{ pageSize }}'
AND name = '{{ name }}'
AND indicatorType = '{{ indicatorType }}'
AND relatedEvent = '{{ relatedEvent }}'
;