Skip to main content

client_events

Creates, updates, deletes, gets or lists a client_events resource.

Overview

Nameclient_events
TypeResource
Idgoogle.jobs.client_events

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
createinsertprojectsId, tenantsIdReport events issued when end user interacts with customer's application that uses Cloud Talent Solution. You may inspect the created events in self service tools. Learn more about self service tools.

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
projectsIdstring
tenantsIdstring

INSERT examples

Report events issued when end user interacts with customer's application that uses Cloud Talent Solution. You may inspect the created events in self service tools. Learn more about self service tools.

INSERT INTO google.jobs.client_events (
data__requestId,
data__eventId,
data__createTime,
data__jobEvent,
data__eventNotes,
projectsId,
tenantsId
)
SELECT
'{{ requestId }}',
'{{ eventId }}',
'{{ createTime }}',
'{{ jobEvent }}',
'{{ eventNotes }}',
'{{ projectsId }}',
'{{ tenantsId }}'
RETURNING
createTime,
eventId,
eventNotes,
jobEvent,
requestId
;