client_events
Creates, updates, deletes, gets or lists a client_events
resource.
Overview
Name | client_events |
Type | Resource |
Id | google.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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create | insert | projectsId , tenantsId | 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. |
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.
Name | Datatype | Description |
---|---|---|
projectsId | string | |
tenantsId | string |
INSERT
examples
- create
- Manifest
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
;
# Description fields are for documentation purposes
- name: client_events
props:
- name: projectsId
value: string
description: Required parameter for the client_events resource.
- name: tenantsId
value: string
description: Required parameter for the client_events resource.
- name: requestId
value: string
description: >
Strongly recommended for the best service experience. A unique ID generated in the API responses. It can be found in ResponseMetadata.request_id.
- name: eventId
value: string
description: >
Required. A unique identifier, generated by the client application.
- name: createTime
value: string
description: >
Required. The timestamp of the event.
- name: jobEvent
value: object
description: >
An event issued when a job seeker interacts with the application that implements Cloud Talent Solution.
- name: eventNotes
value: string
description: >
Notes about the event provided by recruiters or other users, for example, feedback on why a job was bookmarked.