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

UpdateDatabaseDdlMetadata

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

Metadata type for the operation returned by UpdateDatabaseDdl.

interface UpdateDatabaseDdlMetadata {
commitTimestamps?: Date[];
database?: string;
progress?: OperationProgress[];
statements?: string[];
readonly throttled?: boolean;
}

§Properties

§

The brief action info for the DDL statements. actions[i] is the brief info for statements[i].

§
commitTimestamps?: Date[]
[src]

Reports the commit timestamps of all statements that have succeeded so far, where commit_timestamps[i] is the commit timestamp for the statement statements[i].

§
database?: string
[src]

The database being modified.

§

The progress of the UpdateDatabaseDdl operations. All DDL statements will have continuously updating progress, and progress[i] is the operation progress for statements[i]. Also, progress[i] will have start time and end time populated with commit timestamp of operation, as well as a progress of 100% once the operation has completed.

§
statements?: string[]
[src]

For an update this list contains all the statements. For an individual statement, this list contains only that statement.

§
readonly throttled?: boolean
[src]

Output only. When true, indicates that the operation is throttled e.g. due to resource constraints. When resources become available the operation will resume and this field will be false again.