changelogs
Creates, updates, deletes, gets or lists a changelogs
resource.
Overview
Name | changelogs |
Type | Resource |
Id | google.dialogflow.changelogs |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The unique identifier of the changelog. Format: projects//locations//agents//changelogs/ . |
action | string | The action of the change. |
createTime | string | The timestamp of the change. |
displayName | string | The affected resource display name of the change. |
languageCode | string | The affected language code of the change. |
resource | string | The affected resource name of the change. |
type | string | The affected resource type. |
userEmail | string | Email address of the authenticated user. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_agents_changelogs_get | SELECT | agentsId, changelogsId, locationsId, projectsId | Retrieves the specified Changelog. |
projects_locations_agents_changelogs_list | SELECT | agentsId, locationsId, projectsId | Returns the list of Changelogs. |
SELECT
examples
Returns the list of Changelogs.
SELECT
name,
action,
createTime,
displayName,
languageCode,
resource,
type,
userEmail
FROM google.dialogflow.changelogs
WHERE agentsId = '{{ agentsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';