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

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

Methods

NameAccessible byRequired 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.

INSERT example

Use the following StackQL query and manifest file to create a new client_events resource.

/*+ create */
INSERT INTO google.jobs.client_events (
projectsId,
tenantsId,
requestId,
eventId,
jobEvent,
eventNotes
)
SELECT
'{{ projectsId }}',
'{{ tenantsId }}',
'{{ requestId }}',
'{{ eventId }}',
'{{ jobEvent }}',
'{{ eventNotes }}'
;