Class DmlStatistics
Inheritance
System.Object
DmlStatistics
Implements
Google.Apis.Requests.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.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 |
---|---|
System.Nullable<System.Int64> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Nullable<System.Int64> |
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 |
---|---|
System.Nullable<System.Int64> |
Implements
Google.Apis.Requests.IDirectResponseSchema