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:

NameDatatypeDescription
namestring
actionstring
createTimestring (google-datetime)
displayNamestring
languageCodestring
resourcestring
typestring
userEmailstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_changelogs_getselectprojectsId, locationsId, agentsId, changelogsId
projects_locations_agents_changelogs_listselectprojectsId, locationsId, agentsIdfilter, 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.

NameDatatypeDescription
agentsIdstring
changelogsIdstring
locationsIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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
;