Show / Hide Table of Contents

Class UpdateDatabaseDdlMetadata

Metadata type for the operation returned by UpdateDatabaseDdl.

Inheritance
System.Object
UpdateDatabaseDdlMetadata
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class UpdateDatabaseDdlMetadata : IDirectResponseSchema

Properties

CommitTimestamps

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].

Declaration
[JsonProperty("commitTimestamps")]
public virtual IList<object> CommitTimestamps { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Object>

Database

The database being modified.

Declaration
[JsonProperty("database")]
public virtual string Database { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Progress

The progress of the UpdateDatabaseDdl 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].

Declaration
[JsonProperty("progress")]
public virtual IList<OperationProgress> Progress { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<OperationProgress>

Statements

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

Declaration
[JsonProperty("statements")]
public virtual IList<string> Statements { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Throttled

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.

Declaration
[JsonProperty("throttled")]
public virtual bool? Throttled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top