@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240124 → 0.0.20240203
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 +6 -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: 20240203
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -439,6 +439,8 @@ declare namespace gapi.client {
|
|
|
439
439
|
/** Optional. Defines the time travel window in hours. The value can be from 48 to 168 hours (2 to 7 days). The default value is 168 hours if this is not set. */
|
|
440
440
|
maxTimeTravelHours?: string;
|
|
441
441
|
/** Output only. Reserved for future use. */
|
|
442
|
+
satisfiesPzi?: boolean;
|
|
443
|
+
/** Output only. Reserved for future use. */
|
|
442
444
|
satisfiesPzs?: boolean;
|
|
443
445
|
/** Output only. A URL that can be used to access the resource again. You can use this URL in Get or Update requests to the resource. */
|
|
444
446
|
selfLink?: string;
|
|
@@ -1012,6 +1014,8 @@ declare namespace gapi.client {
|
|
|
1012
1014
|
clustering?: Clustering;
|
|
1013
1015
|
/** Optional. Connection properties which can modify the load job behavior. Currently, only the 'session_id' connection property is supported, and is used to resolve _SESSION appearing as the dataset id. */
|
|
1014
1016
|
connectionProperties?: ConnectionProperty[];
|
|
1017
|
+
/** Optional. [Experimental] Configures the load job to only copy files to the destination BigLake managed table with an external storage_uri, without reading file content and writing them to new files. Copying files only is supported when: * source_uris are in the same external storage system as the destination table but they do not overlap with storage_uri of the destination table. * source_format is the same file format as the destination table. * destination_table is an existing BigLake managed table. Its schema does not have default value expression. It schema does not have type parameters other than precision and scale. * No options other than the above are specified. */
|
|
1018
|
+
copyFilesOnly?: boolean;
|
|
1015
1019
|
/** Optional. Specifies whether the job is allowed to create new tables. The following values are supported: * CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table. * CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result. The default value is CREATE_IF_NEEDED. Creation, truncation and append actions occur as one atomic update upon job completion. */
|
|
1016
1020
|
createDisposition?: string;
|
|
1017
1021
|
/** Optional. If this property is true, the job creates a new session using a randomly generated session_id. To continue using a created session with subsequent queries, pass the existing session identifier as a `ConnectionProperty` value. The session identifier is returned as part of the `SessionInfo` message within the query statistics. The new session's location will be set to `Job.JobReference.location` if it is present, otherwise it's set to the default location based on existing routing logic. */
|
|
@@ -1333,7 +1337,7 @@ declare namespace gapi.client {
|
|
|
1333
1337
|
transferredBytes?: string;
|
|
1334
1338
|
/** Output only. GoogleSQL only: list of undeclared query parameters detected during a dry run validation. */
|
|
1335
1339
|
undeclaredQueryParameters?: QueryParameter[];
|
|
1336
|
-
/** Output only. Search query specific statistics. */
|
|
1340
|
+
/** Output only. Vector Search query specific statistics. */
|
|
1337
1341
|
vectorSearchStatistics?: VectorSearchStatistics;
|
|
1338
1342
|
}
|
|
1339
1343
|
interface JobStatistics3 {
|