UpdateDatabaseDdlMetadata

Metadata type for the operation returned by databases.updateDdl.

JSON representation
{
  "database": string,
  "statements": [
    string
  ],
  "commitTimestamps": [
    string
  ],
  "throttled": boolean,
  "progress": [
    {
      object (OperationProgress)
    }
  ],
  "actions": [
    {
      object (DdlStatementActionInfo)
    }
  ]
}
Fields
database

string

The database being modified.

statements[]

string

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

commitTimestamps[]

string (Timestamp format)

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

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

throttled

boolean

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.

progress[]

object (OperationProgress)

The progress of the databases.updateDdl 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.

actions[]

object (DdlStatementActionInfo)

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