UpdateDatabaseDdlMetadata

Stay organized with collections Save and categorize content based on your preferences.

Metadata type for the operation returned by databases.updateDdl.

JSON representation
{
  "database": string,
  "statements": [
    string
  ],
  "commitTimestamps": [
    string
  ],
  "throttled": boolean,
  "progress": [
    {
      object (OperationProgress)
    }
  ]
}
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. Currently, only index creation statements will have a continuously updating progress. For non-index creation statements, 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. progress[i] is the operation progress for statements[i].