Skip to main content

changelogs

Creates, updates, deletes, gets or lists a changelogs resource.

Overview

Namechangelogs
TypeResource
Idgoogle.dialogflow.changelogs

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe unique identifier of the changelog. Format: projects//locations//agents//changelogs/.
actionstringThe action of the change.
createTimestring (google-datetime)The timestamp of the change.
displayNamestringThe affected resource display name of the change.
languageCodestringThe affected language code of the change.
resourcestringThe affected resource name of the change.
typestringThe affected resource type.
userEmailstringEmail address of the authenticated user.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_changelogs_getselectprojectsId, locationsId, agentsId, changelogsIdRetrieves the specified Changelog.
projects_locations_agents_changelogs_listselectprojectsId, locationsId, agentsIdfilter, pageSize, pageTokenReturns 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.

NameDatatypeDescription
agentsIdstring
changelogsIdstring
locationsIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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;