Skip to main content

changelogs

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

Overview

Namechangelogs
TypeResource
Idgoogle.ces.changelogs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringIdentifier. The unique identifier of the changelog. Format: projects/{project}/locations/{location}/apps/{app}/changelogs/{changelog}
actionstringOutput only. The action that was performed on the resource.
authorstringOutput only. Email address of the change author.
createTimestring (google-datetime)Output only. The time when the change was made.
dependentResourcesarrayOutput only. The dependent resources that were changed.
descriptionstringOutput only. Description of the change. which typically captures the changed fields in the resource.
displayNamestringOutput only. Display name of the change. It typically should be the display name of the resource that was changed.
newResourceobjectOutput only. The new resource after the change.
originalResourceobjectOutput only. The original resource before the change.
resourcestringOutput only. The resource that was changed.
resourceTypestringOutput only. The type of the resource that was changed.
sequenceNumberstring (int64)Output only. The monotonically increasing sequence number of the changelog.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, appsId, changelogsIdGets the specified changelog.
listselectprojectsId, locationsId, appsIdpageSize, pageToken, filter, orderByLists the changelogs of the specified app.

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
appsIdstring
changelogsIdstring
locationsIdstring
projectsIdstring
filterstring
orderBystring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Gets the specified changelog.

SELECT
name,
action,
author,
createTime,
dependentResources,
description,
displayName,
newResource,
originalResource,
resource,
resourceType,
sequenceNumber
FROM google.ces.changelogs
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND appsId = '{{ appsId }}' -- required
AND changelogsId = '{{ changelogsId }}' -- required
;