Class DmlStatistics
Inheritance
object
DmlStatistics
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class DmlStatistics : IDirectResponseSchema
Properties
DeletedRowCount
Number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.
Declaration
[JsonProperty("deletedRowCount")]
public virtual long? DeletedRowCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
InsertedRowCount
Number of inserted Rows. Populated by DML INSERT and MERGE statements.
Declaration
[JsonProperty("insertedRowCount")]
public virtual long? InsertedRowCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
UpdatedRowCount
Number of updated Rows. Populated by DML UPDATE and MERGE statements.
Declaration
[JsonProperty("updatedRowCount")]
public virtual long? UpdatedRowCount { get; set; }
Property Value
Type | Description |
---|---|
long? |