@maxim_mazurok/gapi.client.bigquery-v2 0.1.20250831 → 0.1.20250919
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 +14 -2
- 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: 20250919
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -979,6 +979,14 @@ declare namespace gapi.client {
|
|
|
979
979
|
/** 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. */
|
|
980
980
|
resultSetLastReplaceTime?: string;
|
|
981
981
|
}
|
|
982
|
+
interface IndexPruningStats {
|
|
983
|
+
/** The base table reference. */
|
|
984
|
+
baseTable?: TableReference;
|
|
985
|
+
/** The number of parallel inputs after index pruning. */
|
|
986
|
+
postIndexPruningParallelInputCount?: string;
|
|
987
|
+
/** The number of parallel inputs before index pruning. */
|
|
988
|
+
preIndexPruningParallelInputCount?: string;
|
|
989
|
+
}
|
|
982
990
|
interface IndexUnusedReason {
|
|
983
991
|
/** Specifies the base table involved in the reason that no search index was used. */
|
|
984
992
|
baseTable?: TableReference;
|
|
@@ -1072,7 +1080,7 @@ declare namespace gapi.client {
|
|
|
1072
1080
|
dryRun?: boolean;
|
|
1073
1081
|
/** [Pick one] Configures an extract job. */
|
|
1074
1082
|
extract?: JobConfigurationExtract;
|
|
1075
|
-
/** Optional. Job timeout in milliseconds. If this time limit is exceeded, BigQuery
|
|
1083
|
+
/** Optional. Job timeout in milliseconds relative to the job creation time. If this time limit is exceeded, BigQuery attempts to stop the job, but might not always succeed in canceling it before the job completes. For example, a job that takes more than 60 seconds to complete has a better chance of being stopped than a job that takes 10 seconds to complete. */
|
|
1076
1084
|
jobTimeoutMs?: string;
|
|
1077
1085
|
/** Output only. The type of the job. Can be QUERY, LOAD, EXTRACT, COPY or UNKNOWN. */
|
|
1078
1086
|
jobType?: string;
|
|
@@ -2118,6 +2126,8 @@ declare namespace gapi.client {
|
|
|
2118
2126
|
stackFrames?: ScriptStackFrame[];
|
|
2119
2127
|
}
|
|
2120
2128
|
interface SearchStatistics {
|
|
2129
|
+
/** Search index pruning statistics, one for each base table that has a search index. If a base table does not have a search index or the index does not help with pruning on the base table, then there is no pruning statistics for that table. */
|
|
2130
|
+
indexPruningStats?: IndexPruningStats[];
|
|
2121
2131
|
/** When `indexUsageMode` is `UNUSED` or `PARTIALLY_USED`, this field explains why indexes were not used in all or part of the search query. If `indexUsageMode` is `FULLY_USED`, this field is not populated. */
|
|
2122
2132
|
indexUnusedReasons?: IndexUnusedReason[];
|
|
2123
2133
|
/** Specifies the index usage mode for the query. */
|
|
@@ -2495,6 +2505,8 @@ declare namespace gapi.client {
|
|
|
2495
2505
|
roundingMode?: string;
|
|
2496
2506
|
/** Optional. See documentation for precision. */
|
|
2497
2507
|
scale?: string;
|
|
2508
|
+
/** Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type. Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For TIMESTAMP type with picosecond precision) */
|
|
2509
|
+
timestampPrecision?: string;
|
|
2498
2510
|
/** Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema. */
|
|
2499
2511
|
type?: string;
|
|
2500
2512
|
}
|