Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Changelog

import type { Changelog } from "https://googleapis.deno.dev/v1/ces:v1.ts";

Changelogs represent a change made to the app or to an resource within the app.

interface Changelog {
readonly action?: string;
readonly author?: string;
readonly createTime?: Date;
readonly dependentResources?: {
[key: string]: any;
}
[]
;
readonly description?: string;
readonly displayName?: string;
name?: string;
readonly newResource?: {
[key: string]: any;
}
;
readonly originalResource?: {
[key: string]: any;
}
;
readonly resource?: string;
readonly resourceType?: string;
readonly sequenceNumber?: bigint;
}

§Properties

§
readonly action?: string
[src]

Output only. The action that was performed on the resource.

§
readonly author?: string
[src]

Output only. Email address of the change author.

§
readonly createTime?: Date
[src]

Output only. The time when the change was made.

§
readonly dependentResources?: {
[key: string]: any;
}
[]
[src]

Output only. The dependent resources that were changed.

§
readonly description?: string
[src]

Output only. Description of the change. which typically captures the changed fields in the resource.

§
readonly displayName?: string
[src]

Output only. Display name of the change. It typically should be the display name of the resource that was changed.

§
name?: string
[src]

Identifier. The unique identifier of the changelog. Format: projects/{project}/locations/{location}/apps/{app}/changelogs/{changelog}

§
readonly newResource?: {
[key: string]: any;
}
[src]

Output only. The new resource after the change.

§
readonly originalResource?: {
[key: string]: any;
}
[src]

Output only. The original resource before the change.

§
readonly resource?: string
[src]

Output only. The resource that was changed.

§
readonly resourceType?: string
[src]

Output only. The type of the resource that was changed.

§
readonly sequenceNumber?: bigint
[src]

Output only. The monotonically increasing sequence number of the changelog.