@maxim_mazurok/gapi.client.bigquery-v2 0.0.20220827 → 0.0.20220903
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 +3 -1
- package/package.json +1 -1
- package/tests.ts +7 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
12
|
// Generated from: https://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
13
|
-
// Revision:
|
|
13
|
+
// Revision: 20220903
|
|
14
14
|
|
|
15
15
|
/// <reference types="gapi.client" />
|
|
16
16
|
|
|
@@ -1168,6 +1168,8 @@ declare namespace gapi.client {
|
|
|
1168
1168
|
autodetect?: boolean;
|
|
1169
1169
|
/** [Beta] Clustering specification for the destination table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered. */
|
|
1170
1170
|
clustering?: Clustering;
|
|
1171
|
+
/** Connection properties. */
|
|
1172
|
+
connectionProperties?: ConnectionProperty[];
|
|
1171
1173
|
/**
|
|
1172
1174
|
* [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.
|
|
1173
1175
|
* 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
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20220903
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -367,6 +367,12 @@ gapi.load('client', async () => {
|
|
|
367
367
|
"Test string"
|
|
368
368
|
],
|
|
369
369
|
},
|
|
370
|
+
connectionProperties: [
|
|
371
|
+
{
|
|
372
|
+
key: "Test string",
|
|
373
|
+
value: "Test string",
|
|
374
|
+
}
|
|
375
|
+
],
|
|
370
376
|
createDisposition: "Test string",
|
|
371
377
|
decimalTargetTypes: [
|
|
372
378
|
"Test string"
|