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 | The unique identifier of the changelog. Format: projects//locations//agents//changelogs/. |
action | string | The action of the change. |
createTime | string (google-datetime) | 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. |
| 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 (google-datetime) | 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
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 | Retrieves the specified Changelog. | |
projects_locations_agents_changelogs_list | select | projectsId, locationsId, agentsId | filter, pageSize, pageToken | Returns the list of Changelogs. |
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
Retrieves the specified Changelog.
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
;
Returns the list of Changelogs.
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 }}'
;