changelogs
Creates, updates, deletes, gets or lists a changelogs resource.
Overview
| Name | changelogs |
| Type | Resource |
| Id | google.dialogflow.changelogs |
Fields
The following fields are returned by SELECT queries:
- projects_locations_agents_changelogs_get
- projects_locations_agents_changelogs_list
| Name | Datatype | Description |
|---|---|---|
name | string | |
action | string | |
createTime | string (google-datetime) | |
displayName | string | |
languageCode | string | |
resource | string | |
type | string | |
userEmail | string |
| Name | Datatype | Description |
|---|---|---|
name | string | |
action | string | |
createTime | string (google-datetime) | |
displayName | string | |
languageCode | string | |
resource | string | |
type | string | |
userEmail | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_agents_changelogs_get | select | projectsId, locationsId, agentsId, changelogsId | ||
projects_locations_agents_changelogs_list | select | projectsId, locationsId, agentsId | filter, pageSize, pageToken |
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 |
|---|---|---|
agentsId | string | |
changelogsId | string | |
locationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- projects_locations_agents_changelogs_get
- projects_locations_agents_changelogs_list
Successful response
SELECT
name,
action,
createTime,
displayName,
languageCode,
resource,
type,
userEmail
FROM google.dialogflow.changelogs
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND changelogsId = '{{ changelogsId }}' -- required
;
Successful response
SELECT
name,
action,
createTime,
displayName,
languageCode,
resource,
type,
userEmail
FROM google.dialogflow.changelogs
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND filter = '{{ filter }}'
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
;