Skip to main content

events_raw

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

Overview

Nameevents_raw
TypeResource
Idcloudflare.cloudforce_one.events_raw

Fields

The following fields are returned by SELECT queries:

Returns the raw event data.

NameDatatypeDescription
idnumber
accountIdnumber
createdstring
datastring
sourcestring
tlpstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_accountselectaccount_id, event_id, dataset_idRetrieves the raw data associated with an event. Searches across all shards in the dataset.

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.
dataset_idstringThe dataset ID.
event_idstringThe event ID.

SELECT examples

Retrieves the raw data associated with an event. Searches across all shards in the dataset.

SELECT
id,
accountId,
created,
data,
source,
tlp
FROM cloudflare.cloudforce_one.events_raw
WHERE account_id = '{{ account_id }}' -- required
AND event_id = '{{ event_id }}' -- required
AND dataset_id = '{{ dataset_id }}' -- required
;