@maxim_mazurok/gapi.client.bigquery-v2 0.1.20260118 → 0.1.20260224
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +23 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260224
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -574,6 +574,10 @@ declare namespace gapi.client {
|
|
|
574
574
|
interface DmlStatistics {
|
|
575
575
|
/** Output only. Number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements. */
|
|
576
576
|
deletedRowCount?: string;
|
|
577
|
+
/** Output only. DML mode used. */
|
|
578
|
+
dmlMode?: string;
|
|
579
|
+
/** Output only. Reason for disabling fine-grained DML if applicable. */
|
|
580
|
+
fineGrainedDmlUnusedReason?: string;
|
|
577
581
|
/** Output only. Number of inserted Rows. Populated by DML INSERT and MERGE statements */
|
|
578
582
|
insertedRowCount?: string;
|
|
579
583
|
/** Output only. Number of updated Rows. Populated by DML UPDATE and MERGE statements. */
|
|
@@ -986,6 +990,14 @@ declare namespace gapi.client {
|
|
|
986
990
|
interface IncrementalResultStats {
|
|
987
991
|
/** Output only. Reason why incremental query results are/were not written by the query. */
|
|
988
992
|
disabledReason?: string;
|
|
993
|
+
/** Output only. Additional human-readable clarification, if available, for DisabledReason. */
|
|
994
|
+
disabledReasonDetails?: string;
|
|
995
|
+
/** Output only. The time at which the first incremental result was written. If the query needed to restart internally, this only describes the final attempt. */
|
|
996
|
+
firstIncrementalRowTime?: string;
|
|
997
|
+
/** Output only. Number of rows that were in the latest result set before query completion. */
|
|
998
|
+
incrementalRowCount?: string;
|
|
999
|
+
/** Output only. The time at which the last incremental result was written. Does not include the final result written after query completion. */
|
|
1000
|
+
lastIncrementalRowTime?: string;
|
|
989
1001
|
/** Output only. The time at which the result table's contents were modified. May be absent if no results have been written or the query has completed. */
|
|
990
1002
|
resultSetLastModifyTime?: string;
|
|
991
1003
|
/** Output only. The time at which the result table's contents were completely replaced. May be absent if no results have been written or the query has completed. */
|
|
@@ -1456,6 +1468,8 @@ declare namespace gapi.client {
|
|
|
1456
1468
|
queryInfo?: QueryInfo;
|
|
1457
1469
|
/** Output only. Describes execution plan for the query. */
|
|
1458
1470
|
queryPlan?: ExplainQueryStage[];
|
|
1471
|
+
/** Output only. Referenced property graphs for the job. Queries that reference more than 50 property graphs will not have a complete list. */
|
|
1472
|
+
referencedPropertyGraphs?: PropertyGraphReference[];
|
|
1459
1473
|
/** Output only. Referenced routines for the job. */
|
|
1460
1474
|
referencedRoutines?: RoutineReference[];
|
|
1461
1475
|
/** Output only. Referenced tables for the job. */
|
|
@@ -1795,6 +1809,14 @@ declare namespace gapi.client {
|
|
|
1795
1809
|
/** Required. ID of the project. Can be either the numeric ID or the assigned ID of the project. */
|
|
1796
1810
|
projectId?: string;
|
|
1797
1811
|
}
|
|
1812
|
+
interface PropertyGraphReference {
|
|
1813
|
+
/** Required. The ID of the dataset containing this property graph. */
|
|
1814
|
+
datasetId?: string;
|
|
1815
|
+
/** Required. The ID of the project containing this property graph. */
|
|
1816
|
+
projectId?: string;
|
|
1817
|
+
/** Required. The ID of the property graph. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters. */
|
|
1818
|
+
propertyGraphId?: string;
|
|
1819
|
+
}
|
|
1798
1820
|
interface PruningStats {
|
|
1799
1821
|
/** The number of parallel inputs matched. */
|
|
1800
1822
|
postCmetaPruningParallelInputCount?: string;
|