changelogs
Creates, updates, deletes, gets or lists a changelogs resource.
Overview
| Name | changelogs |
| Type | Resource |
| Id | google.ces.changelogs |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. The unique identifier of the changelog. Format: projects/{project}/locations/{location}/apps/{app}/changelogs/{changelog} |
action | string | Output only. The action that was performed on the resource. |
author | string | Output only. Email address of the change author. |
createTime | string (google-datetime) | Output only. The time when the change was made. |
dependentResources | array | Output only. The dependent resources that were changed. |
description | string | Output only. Description of the change. which typically captures the changed fields in the resource. |
displayName | string | Output only. Display name of the change. It typically should be the display name of the resource that was changed. |
newResource | object | Output only. The new resource after the change. |
originalResource | object | Output only. The original resource before the change. |
resource | string | Output only. The resource that was changed. |
resourceType | string | Output only. The type of the resource that was changed. |
sequenceNumber | string (int64) | Output only. The monotonically increasing sequence number of the changelog. |
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. The unique identifier of the changelog. Format: projects/{project}/locations/{location}/apps/{app}/changelogs/{changelog} |
action | string | Output only. The action that was performed on the resource. |
author | string | Output only. Email address of the change author. |
createTime | string (google-datetime) | Output only. The time when the change was made. |
dependentResources | array | Output only. The dependent resources that were changed. |
description | string | Output only. Description of the change. which typically captures the changed fields in the resource. |
displayName | string | Output only. Display name of the change. It typically should be the display name of the resource that was changed. |
newResource | object | Output only. The new resource after the change. |
originalResource | object | Output only. The original resource before the change. |
resource | string | Output only. The resource that was changed. |
resourceType | string | Output only. The type of the resource that was changed. |
sequenceNumber | string (int64) | Output only. The monotonically increasing sequence number of the changelog. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | projectsId, locationsId, appsId, changelogsId | Gets the specified changelog. | |
list | select | projectsId, locationsId, appsId | pageSize, pageToken, filter, orderBy | Lists 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.
| Name | Datatype | Description |
|---|---|---|
appsId | string | |
changelogsId | string | |
locationsId | string | |
projectsId | string | |
filter | string | |
orderBy | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- get
- list
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
;
Lists the changelogs of the specified app.
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 pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}'
AND orderBy = '{{ orderBy }}'
;