Skip to main content

event_tags

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

Overview

Nameevent_tags
TypeResource
Idcloudflare.cloudforce_one.event_tags

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertaccount_id, event_id, tags
deletedeleteaccount_id, event_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.
event_idstringThe event ID.

INSERT examples

No description available.

INSERT INTO cloudflare.cloudforce_one.event_tags (
tags,
account_id,
event_id
)
SELECT
'{{ tags }}' /* required */,
'{{ account_id }}',
'{{ event_id }}'
RETURNING
result,
success
;

DELETE examples

No description available.

DELETE FROM cloudflare.cloudforce_one.event_tags
WHERE account_id = '{{ account_id }}' --required
AND event_id = '{{ event_id }}' --required
;