UpdateDatabaseDdlMetadata
import type { UpdateDatabaseDdlMetadata } from "https://googleapis.deno.dev/v1/spanner:v1.ts";Metadata type for the operation returned by UpdateDatabaseDdl.
interface UpdateDatabaseDdlMetadata {
actions?: DdlStatementActionInfo[];
commitTimestamps?: Date[];
database?: string;
progress?: OperationProgress[];
statements?: string[];
readonly throttled?: boolean;
}§Properties
§
actions?: DdlStatementActionInfo[]
[src]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].
§
progress?: OperationProgress[]
[src]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.