Skip to main content

events_dataset

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

Overview

Nameevents_dataset
TypeResource
Idcloudflare.cloudforce_one.events_dataset

Fields

The following fields are returned by SELECT queries:

Returns a dataset.

NameDatatypeDescription
namestring
isPublicboolean
uuidstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_accountselectaccount_id, dataset_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.
dataset_idstringThe dataset ID.

SELECT examples

Returns a dataset.

SELECT
name,
isPublic,
uuid
FROM cloudflare.cloudforce_one.events_dataset
WHERE account_id = '{{ account_id }}' -- required
AND dataset_id = '{{ dataset_id }}' -- required
;