Skip to main content

events_latest

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

Overview

Nameevents_latest
TypeResource
Idcloudflare.magic_transit.events_latest

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
eobject
nnumberSequence number, used to order events with the same timestamp
tnumberTime the Event was recorded (seconds since the Unix epoch)
vstringVersion

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, connector_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.
connector_idstring

SELECT examples

OK

SELECT
e,
n,
t,
v
FROM cloudflare.magic_transit.events_latest
WHERE account_id = '{{ account_id }}' -- required
AND connector_id = '{{ connector_id }}' -- required
;