@maxim_mazurok/gapi.client.bigquery-v2 0.0.20231030 → 0.0.20231202

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/tests.ts DELETED
@@ -1,3388 +0,0 @@
1
- /* This is stub file for gapi.client.bigquery-v2 definition tests */
2
- // IMPORTANT
3
- // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
4
- // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
5
-
6
- // Revision: 20231030
7
-
8
- gapi.load('client', async () => {
9
- /** now we can use gapi.client */
10
-
11
- await gapi.client.load('https://bigquery.googleapis.com/$discovery/rest?version=v2');
12
- /** now we can use gapi.client.bigquery */
13
-
14
- /** don't forget to authenticate your client before sending any request to resources: */
15
- /** declare client_id registered in Google Developers Console */
16
- const client_id = '<<PUT YOUR CLIENT ID HERE>>';
17
- const scope = [
18
- /** View and manage your data in Google BigQuery and see the email address for your Google Account */
19
- 'https://www.googleapis.com/auth/bigquery',
20
- /** Insert data into Google BigQuery */
21
- 'https://www.googleapis.com/auth/bigquery.insertdata',
22
- /** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. */
23
- 'https://www.googleapis.com/auth/cloud-platform',
24
- /** View your data across Google Cloud services and see the email address of your Google Account */
25
- 'https://www.googleapis.com/auth/cloud-platform.read-only',
26
- /** Manage your data and permissions in Cloud Storage and see the email address for your Google Account */
27
- 'https://www.googleapis.com/auth/devstorage.full_control',
28
- /** View your data in Google Cloud Storage */
29
- 'https://www.googleapis.com/auth/devstorage.read_only',
30
- /** Manage your data in Cloud Storage and see the email address of your Google Account */
31
- 'https://www.googleapis.com/auth/devstorage.read_write',
32
- ];
33
- const immediate = false;
34
- gapi.auth.authorize({ client_id, scope, immediate }, authResult => {
35
- if (authResult && !authResult.error) {
36
- /** handle successful authorization */
37
- run();
38
- } else {
39
- /** handle authorization error */
40
- }
41
- });
42
-
43
- async function run() {
44
- /**
45
- * Deletes the dataset specified by the datasetId value. Before you can delete a dataset, you must delete all its tables, either manually or by specifying deleteContents. Immediately after
46
- * deletion, you can create another dataset with the same name.
47
- */
48
- await gapi.client.bigquery.datasets.delete({
49
- datasetId: "Test string",
50
- deleteContents: true,
51
- projectId: "Test string",
52
- });
53
- /** Returns the dataset specified by datasetID. */
54
- await gapi.client.bigquery.datasets.get({
55
- datasetId: "Test string",
56
- datasetView: "Test string",
57
- projectId: "Test string",
58
- });
59
- /** Creates a new empty dataset. */
60
- await gapi.client.bigquery.datasets.insert({
61
- projectId: "Test string",
62
- }, {
63
- access: [
64
- {
65
- dataset: {
66
- dataset: {
67
- datasetId: "Test string",
68
- projectId: "Test string",
69
- },
70
- targetTypes: [
71
- "Test string"
72
- ],
73
- },
74
- domain: "Test string",
75
- groupByEmail: "Test string",
76
- iamMember: "Test string",
77
- role: "Test string",
78
- routine: {
79
- datasetId: "Test string",
80
- projectId: "Test string",
81
- routineId: "Test string",
82
- },
83
- specialGroup: "Test string",
84
- userByEmail: "Test string",
85
- view: {
86
- datasetId: "Test string",
87
- projectId: "Test string",
88
- tableId: "Test string",
89
- },
90
- }
91
- ],
92
- creationTime: "Test string",
93
- datasetReference: {
94
- datasetId: "Test string",
95
- projectId: "Test string",
96
- },
97
- defaultCollation: "Test string",
98
- defaultEncryptionConfiguration: {
99
- kmsKeyName: "Test string",
100
- },
101
- defaultPartitionExpirationMs: "Test string",
102
- defaultRoundingMode: "Test string",
103
- defaultTableExpirationMs: "Test string",
104
- description: "Test string",
105
- etag: "Test string",
106
- externalDatasetReference: {
107
- connection: "Test string",
108
- externalSource: "Test string",
109
- },
110
- friendlyName: "Test string",
111
- id: "Test string",
112
- isCaseInsensitive: true,
113
- kind: "Test string",
114
- labels: {
115
- A: "Test string"
116
- },
117
- lastModifiedTime: "Test string",
118
- location: "Test string",
119
- maxTimeTravelHours: "Test string",
120
- satisfiesPzs: true,
121
- selfLink: "Test string",
122
- storageBillingModel: "Test string",
123
- tags: [
124
- {
125
- tagKey: "Test string",
126
- tagValue: "Test string",
127
- }
128
- ],
129
- });
130
- /** Lists all datasets in the specified project to which you have been granted the READER dataset role. */
131
- await gapi.client.bigquery.datasets.list({
132
- all: true,
133
- filter: "Test string",
134
- maxResults: 42,
135
- pageToken: "Test string",
136
- projectId: "Test string",
137
- });
138
- /**
139
- * Updates information in an existing dataset. The update method replaces the entire dataset resource, whereas the patch method only replaces fields that are provided in the submitted
140
- * dataset resource. This method supports patch semantics.
141
- */
142
- await gapi.client.bigquery.datasets.patch({
143
- datasetId: "Test string",
144
- projectId: "Test string",
145
- }, {
146
- access: [
147
- {
148
- dataset: {
149
- dataset: {
150
- datasetId: "Test string",
151
- projectId: "Test string",
152
- },
153
- targetTypes: [
154
- "Test string"
155
- ],
156
- },
157
- domain: "Test string",
158
- groupByEmail: "Test string",
159
- iamMember: "Test string",
160
- role: "Test string",
161
- routine: {
162
- datasetId: "Test string",
163
- projectId: "Test string",
164
- routineId: "Test string",
165
- },
166
- specialGroup: "Test string",
167
- userByEmail: "Test string",
168
- view: {
169
- datasetId: "Test string",
170
- projectId: "Test string",
171
- tableId: "Test string",
172
- },
173
- }
174
- ],
175
- creationTime: "Test string",
176
- datasetReference: {
177
- datasetId: "Test string",
178
- projectId: "Test string",
179
- },
180
- defaultCollation: "Test string",
181
- defaultEncryptionConfiguration: {
182
- kmsKeyName: "Test string",
183
- },
184
- defaultPartitionExpirationMs: "Test string",
185
- defaultRoundingMode: "Test string",
186
- defaultTableExpirationMs: "Test string",
187
- description: "Test string",
188
- etag: "Test string",
189
- externalDatasetReference: {
190
- connection: "Test string",
191
- externalSource: "Test string",
192
- },
193
- friendlyName: "Test string",
194
- id: "Test string",
195
- isCaseInsensitive: true,
196
- kind: "Test string",
197
- labels: {
198
- A: "Test string"
199
- },
200
- lastModifiedTime: "Test string",
201
- location: "Test string",
202
- maxTimeTravelHours: "Test string",
203
- satisfiesPzs: true,
204
- selfLink: "Test string",
205
- storageBillingModel: "Test string",
206
- tags: [
207
- {
208
- tagKey: "Test string",
209
- tagValue: "Test string",
210
- }
211
- ],
212
- });
213
- /**
214
- * Updates information in an existing dataset. The update method replaces the entire dataset resource, whereas the patch method only replaces fields that are provided in the submitted
215
- * dataset resource.
216
- */
217
- await gapi.client.bigquery.datasets.update({
218
- datasetId: "Test string",
219
- projectId: "Test string",
220
- }, {
221
- access: [
222
- {
223
- dataset: {
224
- dataset: {
225
- datasetId: "Test string",
226
- projectId: "Test string",
227
- },
228
- targetTypes: [
229
- "Test string"
230
- ],
231
- },
232
- domain: "Test string",
233
- groupByEmail: "Test string",
234
- iamMember: "Test string",
235
- role: "Test string",
236
- routine: {
237
- datasetId: "Test string",
238
- projectId: "Test string",
239
- routineId: "Test string",
240
- },
241
- specialGroup: "Test string",
242
- userByEmail: "Test string",
243
- view: {
244
- datasetId: "Test string",
245
- projectId: "Test string",
246
- tableId: "Test string",
247
- },
248
- }
249
- ],
250
- creationTime: "Test string",
251
- datasetReference: {
252
- datasetId: "Test string",
253
- projectId: "Test string",
254
- },
255
- defaultCollation: "Test string",
256
- defaultEncryptionConfiguration: {
257
- kmsKeyName: "Test string",
258
- },
259
- defaultPartitionExpirationMs: "Test string",
260
- defaultRoundingMode: "Test string",
261
- defaultTableExpirationMs: "Test string",
262
- description: "Test string",
263
- etag: "Test string",
264
- externalDatasetReference: {
265
- connection: "Test string",
266
- externalSource: "Test string",
267
- },
268
- friendlyName: "Test string",
269
- id: "Test string",
270
- isCaseInsensitive: true,
271
- kind: "Test string",
272
- labels: {
273
- A: "Test string"
274
- },
275
- lastModifiedTime: "Test string",
276
- location: "Test string",
277
- maxTimeTravelHours: "Test string",
278
- satisfiesPzs: true,
279
- selfLink: "Test string",
280
- storageBillingModel: "Test string",
281
- tags: [
282
- {
283
- tagKey: "Test string",
284
- tagValue: "Test string",
285
- }
286
- ],
287
- });
288
- /**
289
- * Requests that a job be cancelled. This call will return immediately, and the client will need to poll for the job status to see if the cancel completed successfully. Cancelled jobs may
290
- * still incur costs.
291
- */
292
- await gapi.client.bigquery.jobs.cancel({
293
- jobId: "Test string",
294
- location: "Test string",
295
- projectId: "Test string",
296
- });
297
- /** Requests the deletion of the metadata of a job. This call returns when the job's metadata is deleted. */
298
- await gapi.client.bigquery.jobs.delete({
299
- jobId: "Test string",
300
- location: "Test string",
301
- projectId: "Test string",
302
- });
303
- /**
304
- * Returns information about a specific job. Job information is available for a six month period after creation. Requires that you're the person who ran the job, or have the Is Owner
305
- * project role.
306
- */
307
- await gapi.client.bigquery.jobs.get({
308
- jobId: "Test string",
309
- location: "Test string",
310
- projectId: "Test string",
311
- });
312
- /** Retrieves the results of a query job. */
313
- await gapi.client.bigquery.jobs.getQueryResults({
314
- jobId: "Test string",
315
- location: "Test string",
316
- maxResults: 42,
317
- pageToken: "Test string",
318
- projectId: "Test string",
319
- startIndex: "Test string",
320
- timeoutMs: 42,
321
- });
322
- /** Starts a new asynchronous job. Requires the Can View project role. */
323
- await gapi.client.bigquery.jobs.insert({
324
- projectId: "Test string",
325
- }, {
326
- configuration: {
327
- copy: {
328
- createDisposition: "Test string",
329
- destinationEncryptionConfiguration: {
330
- kmsKeyName: "Test string",
331
- },
332
- destinationExpirationTime: 42,
333
- destinationTable: {
334
- datasetId: "Test string",
335
- projectId: "Test string",
336
- tableId: "Test string",
337
- },
338
- operationType: "Test string",
339
- sourceTable: {
340
- datasetId: "Test string",
341
- projectId: "Test string",
342
- tableId: "Test string",
343
- },
344
- sourceTables: [
345
- {
346
- datasetId: "Test string",
347
- projectId: "Test string",
348
- tableId: "Test string",
349
- }
350
- ],
351
- writeDisposition: "Test string",
352
- },
353
- dryRun: true,
354
- extract: {
355
- compression: "Test string",
356
- destinationFormat: "Test string",
357
- destinationUri: "Test string",
358
- destinationUris: [
359
- "Test string"
360
- ],
361
- fieldDelimiter: "Test string",
362
- printHeader: true,
363
- sourceModel: {
364
- datasetId: "Test string",
365
- modelId: "Test string",
366
- projectId: "Test string",
367
- },
368
- sourceTable: {
369
- datasetId: "Test string",
370
- projectId: "Test string",
371
- tableId: "Test string",
372
- },
373
- useAvroLogicalTypes: true,
374
- },
375
- jobTimeoutMs: "Test string",
376
- jobType: "Test string",
377
- labels: {
378
- A: "Test string"
379
- },
380
- load: {
381
- allowJaggedRows: true,
382
- allowQuotedNewlines: true,
383
- autodetect: true,
384
- clustering: {
385
- fields: [
386
- "Test string"
387
- ],
388
- },
389
- connectionProperties: [
390
- {
391
- key: "Test string",
392
- value: "Test string",
393
- }
394
- ],
395
- createDisposition: "Test string",
396
- createSession: true,
397
- decimalTargetTypes: [
398
- "Test string"
399
- ],
400
- destinationEncryptionConfiguration: {
401
- kmsKeyName: "Test string",
402
- },
403
- destinationTable: {
404
- datasetId: "Test string",
405
- projectId: "Test string",
406
- tableId: "Test string",
407
- },
408
- destinationTableProperties: {
409
- description: "Test string",
410
- expirationTime: "Test string",
411
- friendlyName: "Test string",
412
- labels: {
413
- A: "Test string"
414
- },
415
- },
416
- encoding: "Test string",
417
- fieldDelimiter: "Test string",
418
- fileSetSpecType: "Test string",
419
- hivePartitioningOptions: {
420
- fields: [
421
- "Test string"
422
- ],
423
- mode: "Test string",
424
- requirePartitionFilter: true,
425
- sourceUriPrefix: "Test string",
426
- },
427
- ignoreUnknownValues: true,
428
- jsonExtension: "Test string",
429
- maxBadRecords: 42,
430
- nullMarker: "Test string",
431
- parquetOptions: {
432
- enableListInference: true,
433
- enumAsString: true,
434
- },
435
- preserveAsciiControlCharacters: true,
436
- projectionFields: [
437
- "Test string"
438
- ],
439
- quote: "Test string",
440
- rangePartitioning: {
441
- field: "Test string",
442
- range: {
443
- end: "Test string",
444
- interval: "Test string",
445
- start: "Test string",
446
- },
447
- },
448
- referenceFileSchemaUri: "Test string",
449
- schema: {
450
- fields: [
451
- {
452
- categories: {
453
- names: [
454
- "Test string"
455
- ],
456
- },
457
- collation: "Test string",
458
- defaultValueExpression: "Test string",
459
- description: "Test string",
460
- fields: undefined,
461
- maxLength: "Test string",
462
- mode: "Test string",
463
- name: "Test string",
464
- policyTags: {
465
- names: [
466
- "Test string"
467
- ],
468
- },
469
- precision: "Test string",
470
- rangeElementType: {
471
- type: "Test string",
472
- },
473
- roundingMode: "Test string",
474
- scale: "Test string",
475
- type: "Test string",
476
- }
477
- ],
478
- },
479
- schemaInline: "Test string",
480
- schemaInlineFormat: "Test string",
481
- schemaUpdateOptions: [
482
- "Test string"
483
- ],
484
- skipLeadingRows: 42,
485
- sourceFormat: "Test string",
486
- sourceUris: [
487
- "Test string"
488
- ],
489
- timePartitioning: {
490
- expirationMs: "Test string",
491
- field: "Test string",
492
- requirePartitionFilter: true,
493
- type: "Test string",
494
- },
495
- useAvroLogicalTypes: true,
496
- writeDisposition: "Test string",
497
- },
498
- query: {
499
- allowLargeResults: true,
500
- clustering: {
501
- fields: [
502
- "Test string"
503
- ],
504
- },
505
- connectionProperties: [
506
- {
507
- key: "Test string",
508
- value: "Test string",
509
- }
510
- ],
511
- continuous: true,
512
- createDisposition: "Test string",
513
- createSession: true,
514
- defaultDataset: {
515
- datasetId: "Test string",
516
- projectId: "Test string",
517
- },
518
- destinationEncryptionConfiguration: {
519
- kmsKeyName: "Test string",
520
- },
521
- destinationTable: {
522
- datasetId: "Test string",
523
- projectId: "Test string",
524
- tableId: "Test string",
525
- },
526
- flattenResults: true,
527
- maximumBillingTier: 42,
528
- maximumBytesBilled: "Test string",
529
- parameterMode: "Test string",
530
- preserveNulls: true,
531
- priority: "Test string",
532
- query: "Test string",
533
- queryParameters: [
534
- {
535
- name: "Test string",
536
- parameterType: {
537
- arrayType: undefined,
538
- structTypes: [
539
- {
540
- description: "Test string",
541
- name: "Test string",
542
- type: undefined,
543
- }
544
- ],
545
- type: "Test string",
546
- },
547
- parameterValue: {
548
- arrayValues: undefined,
549
- structValues: undefined,
550
- value: "Test string",
551
- },
552
- }
553
- ],
554
- rangePartitioning: {
555
- field: "Test string",
556
- range: {
557
- end: "Test string",
558
- interval: "Test string",
559
- start: "Test string",
560
- },
561
- },
562
- schemaUpdateOptions: [
563
- "Test string"
564
- ],
565
- tableDefinitions: {
566
- A: {
567
- autodetect: true,
568
- avroOptions: {
569
- useAvroLogicalTypes: true,
570
- },
571
- bigtableOptions: {
572
- columnFamilies: [
573
- {
574
- columns: [
575
- {
576
- encoding: "Test string",
577
- fieldName: "Test string",
578
- onlyReadLatest: true,
579
- qualifierEncoded: "Test string",
580
- qualifierString: "Test string",
581
- type: "Test string",
582
- }
583
- ],
584
- encoding: "Test string",
585
- familyId: "Test string",
586
- onlyReadLatest: true,
587
- type: "Test string",
588
- }
589
- ],
590
- ignoreUnspecifiedColumnFamilies: true,
591
- readRowkeyAsString: true,
592
- },
593
- compression: "Test string",
594
- connectionId: "Test string",
595
- csvOptions: {
596
- allowJaggedRows: true,
597
- allowQuotedNewlines: true,
598
- encoding: "Test string",
599
- fieldDelimiter: "Test string",
600
- nullMarker: "Test string",
601
- preserveAsciiControlCharacters: true,
602
- quote: "Test string",
603
- skipLeadingRows: "Test string",
604
- },
605
- decimalTargetTypes: [
606
- "Test string"
607
- ],
608
- fileSetSpecType: "Test string",
609
- googleSheetsOptions: {
610
- range: "Test string",
611
- skipLeadingRows: "Test string",
612
- },
613
- hivePartitioningOptions: {
614
- fields: [
615
- "Test string"
616
- ],
617
- mode: "Test string",
618
- requirePartitionFilter: true,
619
- sourceUriPrefix: "Test string",
620
- },
621
- ignoreUnknownValues: true,
622
- jsonOptions: {
623
- encoding: "Test string",
624
- },
625
- maxBadRecords: 42,
626
- metadataCacheMode: "Test string",
627
- objectMetadata: "Test string",
628
- parquetOptions: {
629
- enableListInference: true,
630
- enumAsString: true,
631
- },
632
- referenceFileSchemaUri: "Test string",
633
- schema: {
634
- fields: [
635
- {
636
- categories: {
637
- names: [
638
- "Test string"
639
- ],
640
- },
641
- collation: "Test string",
642
- defaultValueExpression: "Test string",
643
- description: "Test string",
644
- fields: undefined,
645
- maxLength: "Test string",
646
- mode: "Test string",
647
- name: "Test string",
648
- policyTags: {
649
- names: [
650
- "Test string"
651
- ],
652
- },
653
- precision: "Test string",
654
- rangeElementType: {
655
- type: "Test string",
656
- },
657
- roundingMode: "Test string",
658
- scale: "Test string",
659
- type: "Test string",
660
- }
661
- ],
662
- },
663
- sourceFormat: "Test string",
664
- sourceUris: [
665
- "Test string"
666
- ],
667
- }
668
- },
669
- timePartitioning: {
670
- expirationMs: "Test string",
671
- field: "Test string",
672
- requirePartitionFilter: true,
673
- type: "Test string",
674
- },
675
- useLegacySql: true,
676
- useQueryCache: true,
677
- userDefinedFunctionResources: [
678
- {
679
- inlineCode: "Test string",
680
- resourceUri: "Test string",
681
- }
682
- ],
683
- writeDisposition: "Test string",
684
- },
685
- },
686
- etag: "Test string",
687
- id: "Test string",
688
- jobCreationReason: 42,
689
- jobReference: {
690
- jobId: "Test string",
691
- location: "Test string",
692
- projectId: "Test string",
693
- },
694
- kind: "Test string",
695
- selfLink: "Test string",
696
- statistics: {
697
- completionRatio: 42,
698
- copy: {
699
- copiedLogicalBytes: "Test string",
700
- copiedRows: "Test string",
701
- },
702
- creationTime: "Test string",
703
- dataMaskingStatistics: {
704
- dataMaskingApplied: true,
705
- },
706
- endTime: "Test string",
707
- extract: {
708
- destinationUriFileCounts: [
709
- "Test string"
710
- ],
711
- inputBytes: "Test string",
712
- },
713
- load: {
714
- badRecords: "Test string",
715
- inputFileBytes: "Test string",
716
- inputFiles: "Test string",
717
- outputBytes: "Test string",
718
- outputRows: "Test string",
719
- },
720
- numChildJobs: "Test string",
721
- parentJobId: "Test string",
722
- query: {
723
- biEngineStatistics: {
724
- accelerationMode: "Test string",
725
- biEngineMode: "Test string",
726
- biEngineReasons: [
727
- {
728
- code: "Test string",
729
- message: "Test string",
730
- }
731
- ],
732
- },
733
- billingTier: 42,
734
- cacheHit: true,
735
- ddlAffectedRowAccessPolicyCount: "Test string",
736
- ddlDestinationTable: {
737
- datasetId: "Test string",
738
- projectId: "Test string",
739
- tableId: "Test string",
740
- },
741
- ddlOperationPerformed: "Test string",
742
- ddlTargetDataset: {
743
- datasetId: "Test string",
744
- projectId: "Test string",
745
- },
746
- ddlTargetRoutine: {
747
- datasetId: "Test string",
748
- projectId: "Test string",
749
- routineId: "Test string",
750
- },
751
- ddlTargetRowAccessPolicy: {
752
- datasetId: "Test string",
753
- policyId: "Test string",
754
- projectId: "Test string",
755
- tableId: "Test string",
756
- },
757
- ddlTargetTable: {
758
- datasetId: "Test string",
759
- projectId: "Test string",
760
- tableId: "Test string",
761
- },
762
- dmlStats: {
763
- deletedRowCount: "Test string",
764
- insertedRowCount: "Test string",
765
- updatedRowCount: "Test string",
766
- },
767
- estimatedBytesProcessed: "Test string",
768
- mlStatistics: {
769
- iterationResults: [
770
- {
771
- durationMs: "Test string",
772
- evalLoss: 42,
773
- index: 42,
774
- learnRate: 42,
775
- trainingLoss: 42,
776
- }
777
- ],
778
- maxIterations: "Test string",
779
- },
780
- modelTraining: {
781
- currentIteration: 42,
782
- expectedTotalIterations: "Test string",
783
- },
784
- modelTrainingCurrentIteration: 42,
785
- modelTrainingExpectedTotalIteration: "Test string",
786
- numDmlAffectedRows: "Test string",
787
- queryPlan: [
788
- {
789
- completedParallelInputs: "Test string",
790
- computeMsAvg: "Test string",
791
- computeMsMax: "Test string",
792
- computeRatioAvg: 42,
793
- computeRatioMax: 42,
794
- endMs: "Test string",
795
- id: "Test string",
796
- inputStages: [
797
- "Test string"
798
- ],
799
- name: "Test string",
800
- parallelInputs: "Test string",
801
- readMsAvg: "Test string",
802
- readMsMax: "Test string",
803
- readRatioAvg: 42,
804
- readRatioMax: 42,
805
- recordsRead: "Test string",
806
- recordsWritten: "Test string",
807
- shuffleOutputBytes: "Test string",
808
- shuffleOutputBytesSpilled: "Test string",
809
- slotMs: "Test string",
810
- startMs: "Test string",
811
- status: "Test string",
812
- steps: [
813
- {
814
- kind: "Test string",
815
- substeps: [
816
- "Test string"
817
- ],
818
- }
819
- ],
820
- waitMsAvg: "Test string",
821
- waitMsMax: "Test string",
822
- waitRatioAvg: 42,
823
- waitRatioMax: 42,
824
- writeMsAvg: "Test string",
825
- writeMsMax: "Test string",
826
- writeRatioAvg: 42,
827
- writeRatioMax: 42,
828
- }
829
- ],
830
- referencedRoutines: [
831
- {
832
- datasetId: "Test string",
833
- projectId: "Test string",
834
- routineId: "Test string",
835
- }
836
- ],
837
- referencedTables: [
838
- {
839
- datasetId: "Test string",
840
- projectId: "Test string",
841
- tableId: "Test string",
842
- }
843
- ],
844
- reservationUsage: [
845
- {
846
- name: "Test string",
847
- slotMs: "Test string",
848
- }
849
- ],
850
- schema: {
851
- fields: [
852
- {
853
- categories: {
854
- names: [
855
- "Test string"
856
- ],
857
- },
858
- collation: "Test string",
859
- defaultValueExpression: "Test string",
860
- description: "Test string",
861
- fields: undefined,
862
- maxLength: "Test string",
863
- mode: "Test string",
864
- name: "Test string",
865
- policyTags: {
866
- names: [
867
- "Test string"
868
- ],
869
- },
870
- precision: "Test string",
871
- rangeElementType: {
872
- type: "Test string",
873
- },
874
- roundingMode: "Test string",
875
- scale: "Test string",
876
- type: "Test string",
877
- }
878
- ],
879
- },
880
- searchStatistics: {
881
- indexUnusedReasons: [
882
- {
883
- baseTable: {
884
- datasetId: "Test string",
885
- projectId: "Test string",
886
- tableId: "Test string",
887
- },
888
- code: "Test string",
889
- indexName: "Test string",
890
- message: "Test string",
891
- }
892
- ],
893
- indexUsageMode: "Test string",
894
- },
895
- sparkStatistics: {
896
- endpoints: {
897
- A: "Test string"
898
- },
899
- loggingInfo: {
900
- projectId: "Test string",
901
- resourceType: "Test string",
902
- },
903
- sparkJobId: "Test string",
904
- sparkJobLocation: "Test string",
905
- },
906
- statementType: "Test string",
907
- timeline: [
908
- {
909
- activeUnits: "Test string",
910
- completedUnits: "Test string",
911
- elapsedMs: "Test string",
912
- estimatedRunnableUnits: "Test string",
913
- pendingUnits: "Test string",
914
- totalSlotMs: "Test string",
915
- }
916
- ],
917
- totalBytesBilled: "Test string",
918
- totalBytesProcessed: "Test string",
919
- totalBytesProcessedAccuracy: "Test string",
920
- totalPartitionsProcessed: "Test string",
921
- totalSlotMs: "Test string",
922
- transferredBytes: "Test string",
923
- undeclaredQueryParameters: [
924
- {
925
- name: "Test string",
926
- parameterType: {
927
- arrayType: undefined,
928
- structTypes: [
929
- {
930
- description: "Test string",
931
- name: "Test string",
932
- type: undefined,
933
- }
934
- ],
935
- type: "Test string",
936
- },
937
- parameterValue: {
938
- arrayValues: undefined,
939
- structValues: undefined,
940
- value: "Test string",
941
- },
942
- }
943
- ],
944
- },
945
- quotaDeferments: [
946
- "Test string"
947
- ],
948
- reservation_id: "Test string",
949
- reservationUsage: [
950
- {
951
- name: "Test string",
952
- slotMs: "Test string",
953
- }
954
- ],
955
- rowLevelSecurityStatistics: {
956
- rowLevelSecurityApplied: true,
957
- },
958
- scriptStatistics: {
959
- evaluationKind: "Test string",
960
- stackFrames: [
961
- {
962
- endColumn: 42,
963
- endLine: 42,
964
- procedureId: "Test string",
965
- startColumn: 42,
966
- startLine: 42,
967
- text: "Test string",
968
- }
969
- ],
970
- },
971
- sessionInfo: {
972
- sessionId: "Test string",
973
- },
974
- startTime: "Test string",
975
- totalBytesProcessed: "Test string",
976
- totalSlotMs: "Test string",
977
- transactionInfo: {
978
- transactionId: "Test string",
979
- },
980
- },
981
- status: {
982
- errorResult: {
983
- debugInfo: "Test string",
984
- location: "Test string",
985
- message: "Test string",
986
- reason: "Test string",
987
- },
988
- errors: [
989
- {
990
- debugInfo: "Test string",
991
- location: "Test string",
992
- message: "Test string",
993
- reason: "Test string",
994
- }
995
- ],
996
- state: "Test string",
997
- },
998
- user_email: "Test string",
999
- });
1000
- /**
1001
- * Lists all jobs that you started in the specified project. Job information is available for a six month period after creation. The job list is sorted in reverse chronological order, by
1002
- * job creation time. Requires the Can View project role, or the Is Owner project role if you set the allUsers property.
1003
- */
1004
- await gapi.client.bigquery.jobs.list({
1005
- allUsers: true,
1006
- maxCreationTime: "Test string",
1007
- maxResults: 42,
1008
- minCreationTime: "Test string",
1009
- pageToken: "Test string",
1010
- parentJobId: "Test string",
1011
- projectId: "Test string",
1012
- projection: "Test string",
1013
- stateFilter: "Test string",
1014
- });
1015
- /** Runs a BigQuery SQL query synchronously and returns query results if the query completes within a specified timeout. */
1016
- await gapi.client.bigquery.jobs.query({
1017
- projectId: "Test string",
1018
- }, {
1019
- connectionProperties: [
1020
- {
1021
- key: "Test string",
1022
- value: "Test string",
1023
- }
1024
- ],
1025
- continuous: true,
1026
- createSession: true,
1027
- defaultDataset: {
1028
- datasetId: "Test string",
1029
- projectId: "Test string",
1030
- },
1031
- dryRun: true,
1032
- jobCreationMode: "Test string",
1033
- kind: "Test string",
1034
- labels: {
1035
- A: "Test string"
1036
- },
1037
- location: "Test string",
1038
- maximumBytesBilled: "Test string",
1039
- maxResults: 42,
1040
- parameterMode: "Test string",
1041
- preserveNulls: true,
1042
- query: "Test string",
1043
- queryParameters: [
1044
- {
1045
- name: "Test string",
1046
- parameterType: {
1047
- arrayType: undefined,
1048
- structTypes: [
1049
- {
1050
- description: "Test string",
1051
- name: "Test string",
1052
- type: undefined,
1053
- }
1054
- ],
1055
- type: "Test string",
1056
- },
1057
- parameterValue: {
1058
- arrayValues: undefined,
1059
- structValues: undefined,
1060
- value: "Test string",
1061
- },
1062
- }
1063
- ],
1064
- requestId: "Test string",
1065
- timeoutMs: 42,
1066
- useLegacySql: true,
1067
- useQueryCache: true,
1068
- });
1069
- /** Deletes the model specified by modelId from the dataset. */
1070
- await gapi.client.bigquery.models.delete({
1071
- datasetId: "Test string",
1072
- modelId: "Test string",
1073
- projectId: "Test string",
1074
- });
1075
- /** Gets the specified model resource by model ID. */
1076
- await gapi.client.bigquery.models.get({
1077
- datasetId: "Test string",
1078
- modelId: "Test string",
1079
- projectId: "Test string",
1080
- });
1081
- /**
1082
- * Lists all models in the specified dataset. Requires the READER dataset role. After retrieving the list of models, you can get information about a particular model by calling the
1083
- * models.get method.
1084
- */
1085
- await gapi.client.bigquery.models.list({
1086
- datasetId: "Test string",
1087
- maxResults: 42,
1088
- pageToken: "Test string",
1089
- projectId: "Test string",
1090
- });
1091
- /** Patch specific fields in the specified model. */
1092
- await gapi.client.bigquery.models.patch({
1093
- datasetId: "Test string",
1094
- modelId: "Test string",
1095
- projectId: "Test string",
1096
- }, {
1097
- bestTrialId: "Test string",
1098
- creationTime: "Test string",
1099
- defaultTrialId: "Test string",
1100
- description: "Test string",
1101
- encryptionConfiguration: {
1102
- kmsKeyName: "Test string",
1103
- },
1104
- etag: "Test string",
1105
- expirationTime: "Test string",
1106
- featureColumns: [
1107
- {
1108
- name: "Test string",
1109
- type: {
1110
- arrayElementType: undefined,
1111
- rangeElementType: undefined,
1112
- structType: {
1113
- fields: undefined,
1114
- },
1115
- typeKind: "Test string",
1116
- },
1117
- }
1118
- ],
1119
- friendlyName: "Test string",
1120
- hparamSearchSpaces: {
1121
- activationFn: {
1122
- candidates: [
1123
- "Test string"
1124
- ],
1125
- },
1126
- batchSize: {
1127
- candidates: {
1128
- candidates: [
1129
- "Test string"
1130
- ],
1131
- },
1132
- range: {
1133
- max: "Test string",
1134
- min: "Test string",
1135
- },
1136
- },
1137
- boosterType: {
1138
- candidates: [
1139
- "Test string"
1140
- ],
1141
- },
1142
- colsampleBylevel: {
1143
- candidates: {
1144
- candidates: [
1145
- 42
1146
- ],
1147
- },
1148
- range: {
1149
- max: 42,
1150
- min: 42,
1151
- },
1152
- },
1153
- colsampleBynode: {
1154
- candidates: {
1155
- candidates: [
1156
- 42
1157
- ],
1158
- },
1159
- range: {
1160
- max: 42,
1161
- min: 42,
1162
- },
1163
- },
1164
- colsampleBytree: {
1165
- candidates: {
1166
- candidates: [
1167
- 42
1168
- ],
1169
- },
1170
- range: {
1171
- max: 42,
1172
- min: 42,
1173
- },
1174
- },
1175
- dartNormalizeType: {
1176
- candidates: [
1177
- "Test string"
1178
- ],
1179
- },
1180
- dropout: {
1181
- candidates: {
1182
- candidates: [
1183
- 42
1184
- ],
1185
- },
1186
- range: {
1187
- max: 42,
1188
- min: 42,
1189
- },
1190
- },
1191
- hiddenUnits: {
1192
- candidates: [
1193
- {
1194
- elements: [
1195
- "Test string"
1196
- ],
1197
- }
1198
- ],
1199
- },
1200
- l1Reg: {
1201
- candidates: {
1202
- candidates: [
1203
- 42
1204
- ],
1205
- },
1206
- range: {
1207
- max: 42,
1208
- min: 42,
1209
- },
1210
- },
1211
- l2Reg: {
1212
- candidates: {
1213
- candidates: [
1214
- 42
1215
- ],
1216
- },
1217
- range: {
1218
- max: 42,
1219
- min: 42,
1220
- },
1221
- },
1222
- learnRate: {
1223
- candidates: {
1224
- candidates: [
1225
- 42
1226
- ],
1227
- },
1228
- range: {
1229
- max: 42,
1230
- min: 42,
1231
- },
1232
- },
1233
- maxTreeDepth: {
1234
- candidates: {
1235
- candidates: [
1236
- "Test string"
1237
- ],
1238
- },
1239
- range: {
1240
- max: "Test string",
1241
- min: "Test string",
1242
- },
1243
- },
1244
- minSplitLoss: {
1245
- candidates: {
1246
- candidates: [
1247
- 42
1248
- ],
1249
- },
1250
- range: {
1251
- max: 42,
1252
- min: 42,
1253
- },
1254
- },
1255
- minTreeChildWeight: {
1256
- candidates: {
1257
- candidates: [
1258
- "Test string"
1259
- ],
1260
- },
1261
- range: {
1262
- max: "Test string",
1263
- min: "Test string",
1264
- },
1265
- },
1266
- numClusters: {
1267
- candidates: {
1268
- candidates: [
1269
- "Test string"
1270
- ],
1271
- },
1272
- range: {
1273
- max: "Test string",
1274
- min: "Test string",
1275
- },
1276
- },
1277
- numFactors: {
1278
- candidates: {
1279
- candidates: [
1280
- "Test string"
1281
- ],
1282
- },
1283
- range: {
1284
- max: "Test string",
1285
- min: "Test string",
1286
- },
1287
- },
1288
- numParallelTree: {
1289
- candidates: {
1290
- candidates: [
1291
- "Test string"
1292
- ],
1293
- },
1294
- range: {
1295
- max: "Test string",
1296
- min: "Test string",
1297
- },
1298
- },
1299
- optimizer: {
1300
- candidates: [
1301
- "Test string"
1302
- ],
1303
- },
1304
- subsample: {
1305
- candidates: {
1306
- candidates: [
1307
- 42
1308
- ],
1309
- },
1310
- range: {
1311
- max: 42,
1312
- min: 42,
1313
- },
1314
- },
1315
- treeMethod: {
1316
- candidates: [
1317
- "Test string"
1318
- ],
1319
- },
1320
- walsAlpha: {
1321
- candidates: {
1322
- candidates: [
1323
- 42
1324
- ],
1325
- },
1326
- range: {
1327
- max: 42,
1328
- min: 42,
1329
- },
1330
- },
1331
- },
1332
- hparamTrials: [
1333
- {
1334
- endTimeMs: "Test string",
1335
- errorMessage: "Test string",
1336
- evalLoss: 42,
1337
- evaluationMetrics: {
1338
- arimaForecastingMetrics: {
1339
- arimaFittingMetrics: [
1340
- {
1341
- aic: 42,
1342
- logLikelihood: 42,
1343
- variance: 42,
1344
- }
1345
- ],
1346
- arimaSingleModelForecastingMetrics: [
1347
- {
1348
- arimaFittingMetrics: {
1349
- aic: 42,
1350
- logLikelihood: 42,
1351
- variance: 42,
1352
- },
1353
- hasDrift: true,
1354
- hasHolidayEffect: true,
1355
- hasSpikesAndDips: true,
1356
- hasStepChanges: true,
1357
- nonSeasonalOrder: {
1358
- d: "Test string",
1359
- p: "Test string",
1360
- q: "Test string",
1361
- },
1362
- seasonalPeriods: [
1363
- "Test string"
1364
- ],
1365
- timeSeriesId: "Test string",
1366
- timeSeriesIds: [
1367
- "Test string"
1368
- ],
1369
- }
1370
- ],
1371
- hasDrift: [
1372
- true
1373
- ],
1374
- nonSeasonalOrder: [
1375
- {
1376
- d: "Test string",
1377
- p: "Test string",
1378
- q: "Test string",
1379
- }
1380
- ],
1381
- seasonalPeriods: [
1382
- "Test string"
1383
- ],
1384
- timeSeriesId: [
1385
- "Test string"
1386
- ],
1387
- },
1388
- binaryClassificationMetrics: {
1389
- aggregateClassificationMetrics: {
1390
- accuracy: 42,
1391
- f1Score: 42,
1392
- logLoss: 42,
1393
- precision: 42,
1394
- recall: 42,
1395
- rocAuc: 42,
1396
- threshold: 42,
1397
- },
1398
- binaryConfusionMatrixList: [
1399
- {
1400
- accuracy: 42,
1401
- f1Score: 42,
1402
- falseNegatives: "Test string",
1403
- falsePositives: "Test string",
1404
- positiveClassThreshold: 42,
1405
- precision: 42,
1406
- recall: 42,
1407
- trueNegatives: "Test string",
1408
- truePositives: "Test string",
1409
- }
1410
- ],
1411
- negativeLabel: "Test string",
1412
- positiveLabel: "Test string",
1413
- },
1414
- clusteringMetrics: {
1415
- clusters: [
1416
- {
1417
- centroidId: "Test string",
1418
- count: "Test string",
1419
- featureValues: [
1420
- {
1421
- categoricalValue: {
1422
- categoryCounts: [
1423
- {
1424
- category: "Test string",
1425
- count: "Test string",
1426
- }
1427
- ],
1428
- },
1429
- featureColumn: "Test string",
1430
- numericalValue: 42,
1431
- }
1432
- ],
1433
- }
1434
- ],
1435
- daviesBouldinIndex: 42,
1436
- meanSquaredDistance: 42,
1437
- },
1438
- dimensionalityReductionMetrics: {
1439
- totalExplainedVarianceRatio: 42,
1440
- },
1441
- multiClassClassificationMetrics: {
1442
- aggregateClassificationMetrics: {
1443
- accuracy: 42,
1444
- f1Score: 42,
1445
- logLoss: 42,
1446
- precision: 42,
1447
- recall: 42,
1448
- rocAuc: 42,
1449
- threshold: 42,
1450
- },
1451
- confusionMatrixList: [
1452
- {
1453
- confidenceThreshold: 42,
1454
- rows: [
1455
- {
1456
- actualLabel: "Test string",
1457
- entries: [
1458
- {
1459
- itemCount: "Test string",
1460
- predictedLabel: "Test string",
1461
- }
1462
- ],
1463
- }
1464
- ],
1465
- }
1466
- ],
1467
- },
1468
- rankingMetrics: {
1469
- averageRank: 42,
1470
- meanAveragePrecision: 42,
1471
- meanSquaredError: 42,
1472
- normalizedDiscountedCumulativeGain: 42,
1473
- },
1474
- regressionMetrics: {
1475
- meanAbsoluteError: 42,
1476
- meanSquaredError: 42,
1477
- meanSquaredLogError: 42,
1478
- medianAbsoluteError: 42,
1479
- rSquared: 42,
1480
- },
1481
- },
1482
- hparams: {
1483
- activationFn: "Test string",
1484
- adjustStepChanges: true,
1485
- approxGlobalFeatureContrib: true,
1486
- autoArima: true,
1487
- autoArimaMaxOrder: "Test string",
1488
- autoArimaMinOrder: "Test string",
1489
- autoClassWeights: true,
1490
- batchSize: "Test string",
1491
- boosterType: "Test string",
1492
- budgetHours: 42,
1493
- calculatePValues: true,
1494
- categoryEncodingMethod: "Test string",
1495
- cleanSpikesAndDips: true,
1496
- colorSpace: "Test string",
1497
- colsampleBylevel: 42,
1498
- colsampleBynode: 42,
1499
- colsampleBytree: 42,
1500
- dartNormalizeType: "Test string",
1501
- dataFrequency: "Test string",
1502
- dataSplitColumn: "Test string",
1503
- dataSplitEvalFraction: 42,
1504
- dataSplitMethod: "Test string",
1505
- decomposeTimeSeries: true,
1506
- distanceType: "Test string",
1507
- dropout: 42,
1508
- earlyStop: true,
1509
- enableGlobalExplain: true,
1510
- feedbackType: "Test string",
1511
- fitIntercept: true,
1512
- hiddenUnits: [
1513
- "Test string"
1514
- ],
1515
- holidayRegion: "Test string",
1516
- holidayRegions: [
1517
- "Test string"
1518
- ],
1519
- horizon: "Test string",
1520
- hparamTuningObjectives: [
1521
- "Test string"
1522
- ],
1523
- includeDrift: true,
1524
- initialLearnRate: 42,
1525
- inputLabelColumns: [
1526
- "Test string"
1527
- ],
1528
- instanceWeightColumn: "Test string",
1529
- integratedGradientsNumSteps: "Test string",
1530
- itemColumn: "Test string",
1531
- kmeansInitializationColumn: "Test string",
1532
- kmeansInitializationMethod: "Test string",
1533
- l1RegActivation: 42,
1534
- l1Regularization: 42,
1535
- l2Regularization: 42,
1536
- labelClassWeights: {
1537
- A: 42
1538
- },
1539
- learnRate: 42,
1540
- learnRateStrategy: "Test string",
1541
- lossType: "Test string",
1542
- maxIterations: "Test string",
1543
- maxParallelTrials: "Test string",
1544
- maxTimeSeriesLength: "Test string",
1545
- maxTreeDepth: "Test string",
1546
- minRelativeProgress: 42,
1547
- minSplitLoss: 42,
1548
- minTimeSeriesLength: "Test string",
1549
- minTreeChildWeight: "Test string",
1550
- modelRegistry: "Test string",
1551
- modelUri: "Test string",
1552
- nonSeasonalOrder: {
1553
- d: "Test string",
1554
- p: "Test string",
1555
- q: "Test string",
1556
- },
1557
- numClusters: "Test string",
1558
- numFactors: "Test string",
1559
- numParallelTree: "Test string",
1560
- numPrincipalComponents: "Test string",
1561
- numTrials: "Test string",
1562
- optimizationStrategy: "Test string",
1563
- optimizer: "Test string",
1564
- pcaExplainedVarianceRatio: 42,
1565
- pcaSolver: "Test string",
1566
- sampledShapleyNumPaths: "Test string",
1567
- scaleFeatures: true,
1568
- standardizeFeatures: true,
1569
- subsample: 42,
1570
- tfVersion: "Test string",
1571
- timeSeriesDataColumn: "Test string",
1572
- timeSeriesIdColumn: "Test string",
1573
- timeSeriesIdColumns: [
1574
- "Test string"
1575
- ],
1576
- timeSeriesLengthFraction: 42,
1577
- timeSeriesTimestampColumn: "Test string",
1578
- treeMethod: "Test string",
1579
- trendSmoothingWindowSize: "Test string",
1580
- userColumn: "Test string",
1581
- vertexAiModelVersionAliases: [
1582
- "Test string"
1583
- ],
1584
- walsAlpha: 42,
1585
- warmStart: true,
1586
- xgboostVersion: "Test string",
1587
- },
1588
- hparamTuningEvaluationMetrics: {
1589
- arimaForecastingMetrics: {
1590
- arimaFittingMetrics: [
1591
- {
1592
- aic: 42,
1593
- logLikelihood: 42,
1594
- variance: 42,
1595
- }
1596
- ],
1597
- arimaSingleModelForecastingMetrics: [
1598
- {
1599
- arimaFittingMetrics: {
1600
- aic: 42,
1601
- logLikelihood: 42,
1602
- variance: 42,
1603
- },
1604
- hasDrift: true,
1605
- hasHolidayEffect: true,
1606
- hasSpikesAndDips: true,
1607
- hasStepChanges: true,
1608
- nonSeasonalOrder: {
1609
- d: "Test string",
1610
- p: "Test string",
1611
- q: "Test string",
1612
- },
1613
- seasonalPeriods: [
1614
- "Test string"
1615
- ],
1616
- timeSeriesId: "Test string",
1617
- timeSeriesIds: [
1618
- "Test string"
1619
- ],
1620
- }
1621
- ],
1622
- hasDrift: [
1623
- true
1624
- ],
1625
- nonSeasonalOrder: [
1626
- {
1627
- d: "Test string",
1628
- p: "Test string",
1629
- q: "Test string",
1630
- }
1631
- ],
1632
- seasonalPeriods: [
1633
- "Test string"
1634
- ],
1635
- timeSeriesId: [
1636
- "Test string"
1637
- ],
1638
- },
1639
- binaryClassificationMetrics: {
1640
- aggregateClassificationMetrics: {
1641
- accuracy: 42,
1642
- f1Score: 42,
1643
- logLoss: 42,
1644
- precision: 42,
1645
- recall: 42,
1646
- rocAuc: 42,
1647
- threshold: 42,
1648
- },
1649
- binaryConfusionMatrixList: [
1650
- {
1651
- accuracy: 42,
1652
- f1Score: 42,
1653
- falseNegatives: "Test string",
1654
- falsePositives: "Test string",
1655
- positiveClassThreshold: 42,
1656
- precision: 42,
1657
- recall: 42,
1658
- trueNegatives: "Test string",
1659
- truePositives: "Test string",
1660
- }
1661
- ],
1662
- negativeLabel: "Test string",
1663
- positiveLabel: "Test string",
1664
- },
1665
- clusteringMetrics: {
1666
- clusters: [
1667
- {
1668
- centroidId: "Test string",
1669
- count: "Test string",
1670
- featureValues: [
1671
- {
1672
- categoricalValue: {
1673
- categoryCounts: [
1674
- {
1675
- category: "Test string",
1676
- count: "Test string",
1677
- }
1678
- ],
1679
- },
1680
- featureColumn: "Test string",
1681
- numericalValue: 42,
1682
- }
1683
- ],
1684
- }
1685
- ],
1686
- daviesBouldinIndex: 42,
1687
- meanSquaredDistance: 42,
1688
- },
1689
- dimensionalityReductionMetrics: {
1690
- totalExplainedVarianceRatio: 42,
1691
- },
1692
- multiClassClassificationMetrics: {
1693
- aggregateClassificationMetrics: {
1694
- accuracy: 42,
1695
- f1Score: 42,
1696
- logLoss: 42,
1697
- precision: 42,
1698
- recall: 42,
1699
- rocAuc: 42,
1700
- threshold: 42,
1701
- },
1702
- confusionMatrixList: [
1703
- {
1704
- confidenceThreshold: 42,
1705
- rows: [
1706
- {
1707
- actualLabel: "Test string",
1708
- entries: [
1709
- {
1710
- itemCount: "Test string",
1711
- predictedLabel: "Test string",
1712
- }
1713
- ],
1714
- }
1715
- ],
1716
- }
1717
- ],
1718
- },
1719
- rankingMetrics: {
1720
- averageRank: 42,
1721
- meanAveragePrecision: 42,
1722
- meanSquaredError: 42,
1723
- normalizedDiscountedCumulativeGain: 42,
1724
- },
1725
- regressionMetrics: {
1726
- meanAbsoluteError: 42,
1727
- meanSquaredError: 42,
1728
- meanSquaredLogError: 42,
1729
- medianAbsoluteError: 42,
1730
- rSquared: 42,
1731
- },
1732
- },
1733
- startTimeMs: "Test string",
1734
- status: "Test string",
1735
- trainingLoss: 42,
1736
- trialId: "Test string",
1737
- }
1738
- ],
1739
- labelColumns: [
1740
- {
1741
- name: "Test string",
1742
- type: {
1743
- arrayElementType: undefined,
1744
- rangeElementType: undefined,
1745
- structType: {
1746
- fields: undefined,
1747
- },
1748
- typeKind: "Test string",
1749
- },
1750
- }
1751
- ],
1752
- labels: {
1753
- A: "Test string"
1754
- },
1755
- lastModifiedTime: "Test string",
1756
- location: "Test string",
1757
- modelReference: {
1758
- datasetId: "Test string",
1759
- modelId: "Test string",
1760
- projectId: "Test string",
1761
- },
1762
- modelType: "Test string",
1763
- optimalTrialIds: [
1764
- "Test string"
1765
- ],
1766
- remoteModelInfo: {
1767
- connection: "Test string",
1768
- endpoint: "Test string",
1769
- maxBatchingRows: "Test string",
1770
- remoteModelVersion: "Test string",
1771
- remoteServiceType: "Test string",
1772
- },
1773
- trainingRuns: [
1774
- {
1775
- classLevelGlobalExplanations: [
1776
- {
1777
- classLabel: "Test string",
1778
- explanations: [
1779
- {
1780
- attribution: 42,
1781
- featureName: "Test string",
1782
- }
1783
- ],
1784
- }
1785
- ],
1786
- dataSplitResult: {
1787
- evaluationTable: {
1788
- datasetId: "Test string",
1789
- projectId: "Test string",
1790
- tableId: "Test string",
1791
- },
1792
- testTable: {
1793
- datasetId: "Test string",
1794
- projectId: "Test string",
1795
- tableId: "Test string",
1796
- },
1797
- trainingTable: {
1798
- datasetId: "Test string",
1799
- projectId: "Test string",
1800
- tableId: "Test string",
1801
- },
1802
- },
1803
- evaluationMetrics: {
1804
- arimaForecastingMetrics: {
1805
- arimaFittingMetrics: [
1806
- {
1807
- aic: 42,
1808
- logLikelihood: 42,
1809
- variance: 42,
1810
- }
1811
- ],
1812
- arimaSingleModelForecastingMetrics: [
1813
- {
1814
- arimaFittingMetrics: {
1815
- aic: 42,
1816
- logLikelihood: 42,
1817
- variance: 42,
1818
- },
1819
- hasDrift: true,
1820
- hasHolidayEffect: true,
1821
- hasSpikesAndDips: true,
1822
- hasStepChanges: true,
1823
- nonSeasonalOrder: {
1824
- d: "Test string",
1825
- p: "Test string",
1826
- q: "Test string",
1827
- },
1828
- seasonalPeriods: [
1829
- "Test string"
1830
- ],
1831
- timeSeriesId: "Test string",
1832
- timeSeriesIds: [
1833
- "Test string"
1834
- ],
1835
- }
1836
- ],
1837
- hasDrift: [
1838
- true
1839
- ],
1840
- nonSeasonalOrder: [
1841
- {
1842
- d: "Test string",
1843
- p: "Test string",
1844
- q: "Test string",
1845
- }
1846
- ],
1847
- seasonalPeriods: [
1848
- "Test string"
1849
- ],
1850
- timeSeriesId: [
1851
- "Test string"
1852
- ],
1853
- },
1854
- binaryClassificationMetrics: {
1855
- aggregateClassificationMetrics: {
1856
- accuracy: 42,
1857
- f1Score: 42,
1858
- logLoss: 42,
1859
- precision: 42,
1860
- recall: 42,
1861
- rocAuc: 42,
1862
- threshold: 42,
1863
- },
1864
- binaryConfusionMatrixList: [
1865
- {
1866
- accuracy: 42,
1867
- f1Score: 42,
1868
- falseNegatives: "Test string",
1869
- falsePositives: "Test string",
1870
- positiveClassThreshold: 42,
1871
- precision: 42,
1872
- recall: 42,
1873
- trueNegatives: "Test string",
1874
- truePositives: "Test string",
1875
- }
1876
- ],
1877
- negativeLabel: "Test string",
1878
- positiveLabel: "Test string",
1879
- },
1880
- clusteringMetrics: {
1881
- clusters: [
1882
- {
1883
- centroidId: "Test string",
1884
- count: "Test string",
1885
- featureValues: [
1886
- {
1887
- categoricalValue: {
1888
- categoryCounts: [
1889
- {
1890
- category: "Test string",
1891
- count: "Test string",
1892
- }
1893
- ],
1894
- },
1895
- featureColumn: "Test string",
1896
- numericalValue: 42,
1897
- }
1898
- ],
1899
- }
1900
- ],
1901
- daviesBouldinIndex: 42,
1902
- meanSquaredDistance: 42,
1903
- },
1904
- dimensionalityReductionMetrics: {
1905
- totalExplainedVarianceRatio: 42,
1906
- },
1907
- multiClassClassificationMetrics: {
1908
- aggregateClassificationMetrics: {
1909
- accuracy: 42,
1910
- f1Score: 42,
1911
- logLoss: 42,
1912
- precision: 42,
1913
- recall: 42,
1914
- rocAuc: 42,
1915
- threshold: 42,
1916
- },
1917
- confusionMatrixList: [
1918
- {
1919
- confidenceThreshold: 42,
1920
- rows: [
1921
- {
1922
- actualLabel: "Test string",
1923
- entries: [
1924
- {
1925
- itemCount: "Test string",
1926
- predictedLabel: "Test string",
1927
- }
1928
- ],
1929
- }
1930
- ],
1931
- }
1932
- ],
1933
- },
1934
- rankingMetrics: {
1935
- averageRank: 42,
1936
- meanAveragePrecision: 42,
1937
- meanSquaredError: 42,
1938
- normalizedDiscountedCumulativeGain: 42,
1939
- },
1940
- regressionMetrics: {
1941
- meanAbsoluteError: 42,
1942
- meanSquaredError: 42,
1943
- meanSquaredLogError: 42,
1944
- medianAbsoluteError: 42,
1945
- rSquared: 42,
1946
- },
1947
- },
1948
- modelLevelGlobalExplanation: {
1949
- classLabel: "Test string",
1950
- explanations: [
1951
- {
1952
- attribution: 42,
1953
- featureName: "Test string",
1954
- }
1955
- ],
1956
- },
1957
- results: [
1958
- {
1959
- durationMs: "Test string",
1960
- evalLoss: 42,
1961
- index: 42,
1962
- learnRate: 42,
1963
- trainingLoss: 42,
1964
- }
1965
- ],
1966
- startTime: "Test string",
1967
- trainingOptions: {
1968
- activationFn: "Test string",
1969
- adjustStepChanges: true,
1970
- approxGlobalFeatureContrib: true,
1971
- autoArima: true,
1972
- autoArimaMaxOrder: "Test string",
1973
- autoArimaMinOrder: "Test string",
1974
- autoClassWeights: true,
1975
- batchSize: "Test string",
1976
- boosterType: "Test string",
1977
- budgetHours: 42,
1978
- calculatePValues: true,
1979
- categoryEncodingMethod: "Test string",
1980
- cleanSpikesAndDips: true,
1981
- colorSpace: "Test string",
1982
- colsampleBylevel: 42,
1983
- colsampleBynode: 42,
1984
- colsampleBytree: 42,
1985
- dartNormalizeType: "Test string",
1986
- dataFrequency: "Test string",
1987
- dataSplitColumn: "Test string",
1988
- dataSplitEvalFraction: 42,
1989
- dataSplitMethod: "Test string",
1990
- decomposeTimeSeries: true,
1991
- distanceType: "Test string",
1992
- dropout: 42,
1993
- earlyStop: true,
1994
- enableGlobalExplain: true,
1995
- feedbackType: "Test string",
1996
- fitIntercept: true,
1997
- hiddenUnits: [
1998
- "Test string"
1999
- ],
2000
- holidayRegion: "Test string",
2001
- holidayRegions: [
2002
- "Test string"
2003
- ],
2004
- horizon: "Test string",
2005
- hparamTuningObjectives: [
2006
- "Test string"
2007
- ],
2008
- includeDrift: true,
2009
- initialLearnRate: 42,
2010
- inputLabelColumns: [
2011
- "Test string"
2012
- ],
2013
- instanceWeightColumn: "Test string",
2014
- integratedGradientsNumSteps: "Test string",
2015
- itemColumn: "Test string",
2016
- kmeansInitializationColumn: "Test string",
2017
- kmeansInitializationMethod: "Test string",
2018
- l1RegActivation: 42,
2019
- l1Regularization: 42,
2020
- l2Regularization: 42,
2021
- labelClassWeights: {
2022
- A: 42
2023
- },
2024
- learnRate: 42,
2025
- learnRateStrategy: "Test string",
2026
- lossType: "Test string",
2027
- maxIterations: "Test string",
2028
- maxParallelTrials: "Test string",
2029
- maxTimeSeriesLength: "Test string",
2030
- maxTreeDepth: "Test string",
2031
- minRelativeProgress: 42,
2032
- minSplitLoss: 42,
2033
- minTimeSeriesLength: "Test string",
2034
- minTreeChildWeight: "Test string",
2035
- modelRegistry: "Test string",
2036
- modelUri: "Test string",
2037
- nonSeasonalOrder: {
2038
- d: "Test string",
2039
- p: "Test string",
2040
- q: "Test string",
2041
- },
2042
- numClusters: "Test string",
2043
- numFactors: "Test string",
2044
- numParallelTree: "Test string",
2045
- numPrincipalComponents: "Test string",
2046
- numTrials: "Test string",
2047
- optimizationStrategy: "Test string",
2048
- optimizer: "Test string",
2049
- pcaExplainedVarianceRatio: 42,
2050
- pcaSolver: "Test string",
2051
- sampledShapleyNumPaths: "Test string",
2052
- scaleFeatures: true,
2053
- standardizeFeatures: true,
2054
- subsample: 42,
2055
- tfVersion: "Test string",
2056
- timeSeriesDataColumn: "Test string",
2057
- timeSeriesIdColumn: "Test string",
2058
- timeSeriesIdColumns: [
2059
- "Test string"
2060
- ],
2061
- timeSeriesLengthFraction: 42,
2062
- timeSeriesTimestampColumn: "Test string",
2063
- treeMethod: "Test string",
2064
- trendSmoothingWindowSize: "Test string",
2065
- userColumn: "Test string",
2066
- vertexAiModelVersionAliases: [
2067
- "Test string"
2068
- ],
2069
- walsAlpha: 42,
2070
- warmStart: true,
2071
- xgboostVersion: "Test string",
2072
- },
2073
- trainingStartTime: "Test string",
2074
- vertexAiModelId: "Test string",
2075
- vertexAiModelVersion: "Test string",
2076
- }
2077
- ],
2078
- transformColumns: [
2079
- {
2080
- name: "Test string",
2081
- transformSql: "Test string",
2082
- type: {
2083
- arrayElementType: undefined,
2084
- rangeElementType: undefined,
2085
- structType: {
2086
- fields: [
2087
- {
2088
- name: "Test string",
2089
- type: undefined,
2090
- }
2091
- ],
2092
- },
2093
- typeKind: "Test string",
2094
- },
2095
- }
2096
- ],
2097
- });
2098
- /** Returns the email address of the service account for your project used for interactions with Google Cloud KMS. */
2099
- await gapi.client.bigquery.projects.getServiceAccount({
2100
- projectId: "Test string",
2101
- });
2102
- /** Lists all projects to which you have been granted any project role. */
2103
- await gapi.client.bigquery.projects.list({
2104
- maxResults: 42,
2105
- pageToken: "Test string",
2106
- });
2107
- /** Deletes the routine specified by routineId from the dataset. */
2108
- await gapi.client.bigquery.routines.delete({
2109
- datasetId: "Test string",
2110
- projectId: "Test string",
2111
- routineId: "Test string",
2112
- });
2113
- /** Gets the specified routine resource by routine ID. */
2114
- await gapi.client.bigquery.routines.get({
2115
- datasetId: "Test string",
2116
- projectId: "Test string",
2117
- readMask: "Test string",
2118
- routineId: "Test string",
2119
- });
2120
- /** Creates a new routine in the dataset. */
2121
- await gapi.client.bigquery.routines.insert({
2122
- datasetId: "Test string",
2123
- projectId: "Test string",
2124
- }, {
2125
- arguments: [
2126
- {
2127
- argumentKind: "Test string",
2128
- dataType: {
2129
- arrayElementType: undefined,
2130
- rangeElementType: undefined,
2131
- structType: {
2132
- fields: [
2133
- {
2134
- name: "Test string",
2135
- type: undefined,
2136
- }
2137
- ],
2138
- },
2139
- typeKind: "Test string",
2140
- },
2141
- isAggregate: true,
2142
- mode: "Test string",
2143
- name: "Test string",
2144
- }
2145
- ],
2146
- creationTime: "Test string",
2147
- dataGovernanceType: "Test string",
2148
- definitionBody: "Test string",
2149
- description: "Test string",
2150
- determinismLevel: "Test string",
2151
- etag: "Test string",
2152
- importedLibraries: [
2153
- "Test string"
2154
- ],
2155
- language: "Test string",
2156
- lastModifiedTime: "Test string",
2157
- remoteFunctionOptions: {
2158
- connection: "Test string",
2159
- endpoint: "Test string",
2160
- maxBatchingRows: "Test string",
2161
- userDefinedContext: {
2162
- A: "Test string"
2163
- },
2164
- },
2165
- returnTableType: {
2166
- columns: [
2167
- {
2168
- name: "Test string",
2169
- type: {
2170
- arrayElementType: undefined,
2171
- rangeElementType: undefined,
2172
- structType: {
2173
- fields: undefined,
2174
- },
2175
- typeKind: "Test string",
2176
- },
2177
- }
2178
- ],
2179
- },
2180
- returnType: {
2181
- arrayElementType: undefined,
2182
- rangeElementType: undefined,
2183
- structType: {
2184
- fields: [
2185
- {
2186
- name: "Test string",
2187
- type: undefined,
2188
- }
2189
- ],
2190
- },
2191
- typeKind: "Test string",
2192
- },
2193
- routineReference: {
2194
- datasetId: "Test string",
2195
- projectId: "Test string",
2196
- routineId: "Test string",
2197
- },
2198
- routineType: "Test string",
2199
- securityMode: "Test string",
2200
- sparkOptions: {
2201
- archiveUris: [
2202
- "Test string"
2203
- ],
2204
- connection: "Test string",
2205
- containerImage: "Test string",
2206
- fileUris: [
2207
- "Test string"
2208
- ],
2209
- jarUris: [
2210
- "Test string"
2211
- ],
2212
- mainClass: "Test string",
2213
- mainFileUri: "Test string",
2214
- properties: {
2215
- A: "Test string"
2216
- },
2217
- pyFileUris: [
2218
- "Test string"
2219
- ],
2220
- runtimeVersion: "Test string",
2221
- },
2222
- strictMode: true,
2223
- });
2224
- /** Lists all routines in the specified dataset. Requires the READER dataset role. */
2225
- await gapi.client.bigquery.routines.list({
2226
- datasetId: "Test string",
2227
- filter: "Test string",
2228
- maxResults: 42,
2229
- pageToken: "Test string",
2230
- projectId: "Test string",
2231
- readMask: "Test string",
2232
- });
2233
- /** Updates information in an existing routine. The update method replaces the entire Routine resource. */
2234
- await gapi.client.bigquery.routines.update({
2235
- datasetId: "Test string",
2236
- projectId: "Test string",
2237
- routineId: "Test string",
2238
- }, {
2239
- arguments: [
2240
- {
2241
- argumentKind: "Test string",
2242
- dataType: {
2243
- arrayElementType: undefined,
2244
- rangeElementType: undefined,
2245
- structType: {
2246
- fields: [
2247
- {
2248
- name: "Test string",
2249
- type: undefined,
2250
- }
2251
- ],
2252
- },
2253
- typeKind: "Test string",
2254
- },
2255
- isAggregate: true,
2256
- mode: "Test string",
2257
- name: "Test string",
2258
- }
2259
- ],
2260
- creationTime: "Test string",
2261
- dataGovernanceType: "Test string",
2262
- definitionBody: "Test string",
2263
- description: "Test string",
2264
- determinismLevel: "Test string",
2265
- etag: "Test string",
2266
- importedLibraries: [
2267
- "Test string"
2268
- ],
2269
- language: "Test string",
2270
- lastModifiedTime: "Test string",
2271
- remoteFunctionOptions: {
2272
- connection: "Test string",
2273
- endpoint: "Test string",
2274
- maxBatchingRows: "Test string",
2275
- userDefinedContext: {
2276
- A: "Test string"
2277
- },
2278
- },
2279
- returnTableType: {
2280
- columns: [
2281
- {
2282
- name: "Test string",
2283
- type: {
2284
- arrayElementType: undefined,
2285
- rangeElementType: undefined,
2286
- structType: {
2287
- fields: undefined,
2288
- },
2289
- typeKind: "Test string",
2290
- },
2291
- }
2292
- ],
2293
- },
2294
- returnType: {
2295
- arrayElementType: undefined,
2296
- rangeElementType: undefined,
2297
- structType: {
2298
- fields: [
2299
- {
2300
- name: "Test string",
2301
- type: undefined,
2302
- }
2303
- ],
2304
- },
2305
- typeKind: "Test string",
2306
- },
2307
- routineReference: {
2308
- datasetId: "Test string",
2309
- projectId: "Test string",
2310
- routineId: "Test string",
2311
- },
2312
- routineType: "Test string",
2313
- securityMode: "Test string",
2314
- sparkOptions: {
2315
- archiveUris: [
2316
- "Test string"
2317
- ],
2318
- connection: "Test string",
2319
- containerImage: "Test string",
2320
- fileUris: [
2321
- "Test string"
2322
- ],
2323
- jarUris: [
2324
- "Test string"
2325
- ],
2326
- mainClass: "Test string",
2327
- mainFileUri: "Test string",
2328
- properties: {
2329
- A: "Test string"
2330
- },
2331
- pyFileUris: [
2332
- "Test string"
2333
- ],
2334
- runtimeVersion: "Test string",
2335
- },
2336
- strictMode: true,
2337
- });
2338
- /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2339
- await gapi.client.bigquery.rowAccessPolicies.getIamPolicy({
2340
- resource: "Test string",
2341
- }, {
2342
- options: {
2343
- requestedPolicyVersion: 42,
2344
- },
2345
- });
2346
- /** Lists all row access policies on the specified table. */
2347
- await gapi.client.bigquery.rowAccessPolicies.list({
2348
- datasetId: "Test string",
2349
- pageSize: 42,
2350
- pageToken: "Test string",
2351
- projectId: "Test string",
2352
- tableId: "Test string",
2353
- });
2354
- /**
2355
- * Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This
2356
- * operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
2357
- */
2358
- await gapi.client.bigquery.rowAccessPolicies.testIamPermissions({
2359
- resource: "Test string",
2360
- }, {
2361
- permissions: [
2362
- "Test string"
2363
- ],
2364
- });
2365
- /** Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role. */
2366
- await gapi.client.bigquery.tabledata.insertAll({
2367
- datasetId: "Test string",
2368
- projectId: "Test string",
2369
- tableId: "Test string",
2370
- }, {
2371
- ignoreUnknownValues: true,
2372
- kind: "Test string",
2373
- rows: [
2374
- {
2375
- insertId: "Test string",
2376
- json: {
2377
- A: 42
2378
- },
2379
- }
2380
- ],
2381
- skipInvalidRows: true,
2382
- templateSuffix: "Test string",
2383
- });
2384
- /** Retrieves table data from a specified set of rows. Requires the READER dataset role. */
2385
- await gapi.client.bigquery.tabledata.list({
2386
- datasetId: "Test string",
2387
- maxResults: 42,
2388
- pageToken: "Test string",
2389
- projectId: "Test string",
2390
- selectedFields: "Test string",
2391
- startIndex: "Test string",
2392
- tableId: "Test string",
2393
- });
2394
- /** Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted. */
2395
- await gapi.client.bigquery.tables.delete({
2396
- datasetId: "Test string",
2397
- projectId: "Test string",
2398
- tableId: "Test string",
2399
- });
2400
- /** Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table. */
2401
- await gapi.client.bigquery.tables.get({
2402
- datasetId: "Test string",
2403
- projectId: "Test string",
2404
- selectedFields: "Test string",
2405
- tableId: "Test string",
2406
- view: "Test string",
2407
- });
2408
- /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2409
- await gapi.client.bigquery.tables.getIamPolicy({
2410
- resource: "Test string",
2411
- }, {
2412
- options: {
2413
- requestedPolicyVersion: 42,
2414
- },
2415
- });
2416
- /** Creates a new, empty table in the dataset. */
2417
- await gapi.client.bigquery.tables.insert({
2418
- datasetId: "Test string",
2419
- projectId: "Test string",
2420
- }, {
2421
- biglakeConfiguration: {
2422
- connectionId: "Test string",
2423
- fileFormat: "Test string",
2424
- storageUri: "Test string",
2425
- tableFormat: "Test string",
2426
- },
2427
- cloneDefinition: {
2428
- baseTableReference: {
2429
- datasetId: "Test string",
2430
- projectId: "Test string",
2431
- tableId: "Test string",
2432
- },
2433
- cloneTime: "Test string",
2434
- },
2435
- clustering: {
2436
- fields: [
2437
- "Test string"
2438
- ],
2439
- },
2440
- creationTime: "Test string",
2441
- defaultCollation: "Test string",
2442
- defaultRoundingMode: "Test string",
2443
- description: "Test string",
2444
- encryptionConfiguration: {
2445
- kmsKeyName: "Test string",
2446
- },
2447
- etag: "Test string",
2448
- expirationTime: "Test string",
2449
- externalDataConfiguration: {
2450
- autodetect: true,
2451
- avroOptions: {
2452
- useAvroLogicalTypes: true,
2453
- },
2454
- bigtableOptions: {
2455
- columnFamilies: [
2456
- {
2457
- columns: [
2458
- {
2459
- encoding: "Test string",
2460
- fieldName: "Test string",
2461
- onlyReadLatest: true,
2462
- qualifierEncoded: "Test string",
2463
- qualifierString: "Test string",
2464
- type: "Test string",
2465
- }
2466
- ],
2467
- encoding: "Test string",
2468
- familyId: "Test string",
2469
- onlyReadLatest: true,
2470
- type: "Test string",
2471
- }
2472
- ],
2473
- ignoreUnspecifiedColumnFamilies: true,
2474
- readRowkeyAsString: true,
2475
- },
2476
- compression: "Test string",
2477
- connectionId: "Test string",
2478
- csvOptions: {
2479
- allowJaggedRows: true,
2480
- allowQuotedNewlines: true,
2481
- encoding: "Test string",
2482
- fieldDelimiter: "Test string",
2483
- nullMarker: "Test string",
2484
- preserveAsciiControlCharacters: true,
2485
- quote: "Test string",
2486
- skipLeadingRows: "Test string",
2487
- },
2488
- decimalTargetTypes: [
2489
- "Test string"
2490
- ],
2491
- fileSetSpecType: "Test string",
2492
- googleSheetsOptions: {
2493
- range: "Test string",
2494
- skipLeadingRows: "Test string",
2495
- },
2496
- hivePartitioningOptions: {
2497
- fields: [
2498
- "Test string"
2499
- ],
2500
- mode: "Test string",
2501
- requirePartitionFilter: true,
2502
- sourceUriPrefix: "Test string",
2503
- },
2504
- ignoreUnknownValues: true,
2505
- jsonOptions: {
2506
- encoding: "Test string",
2507
- },
2508
- maxBadRecords: 42,
2509
- metadataCacheMode: "Test string",
2510
- objectMetadata: "Test string",
2511
- parquetOptions: {
2512
- enableListInference: true,
2513
- enumAsString: true,
2514
- },
2515
- referenceFileSchemaUri: "Test string",
2516
- schema: {
2517
- fields: [
2518
- {
2519
- categories: {
2520
- names: [
2521
- "Test string"
2522
- ],
2523
- },
2524
- collation: "Test string",
2525
- defaultValueExpression: "Test string",
2526
- description: "Test string",
2527
- fields: undefined,
2528
- maxLength: "Test string",
2529
- mode: "Test string",
2530
- name: "Test string",
2531
- policyTags: {
2532
- names: [
2533
- "Test string"
2534
- ],
2535
- },
2536
- precision: "Test string",
2537
- rangeElementType: {
2538
- type: "Test string",
2539
- },
2540
- roundingMode: "Test string",
2541
- scale: "Test string",
2542
- type: "Test string",
2543
- }
2544
- ],
2545
- },
2546
- sourceFormat: "Test string",
2547
- sourceUris: [
2548
- "Test string"
2549
- ],
2550
- },
2551
- friendlyName: "Test string",
2552
- id: "Test string",
2553
- kind: "Test string",
2554
- labels: {
2555
- A: "Test string"
2556
- },
2557
- lastModifiedTime: "Test string",
2558
- location: "Test string",
2559
- materializedView: {
2560
- allowNonIncrementalDefinition: true,
2561
- enableRefresh: true,
2562
- lastRefreshTime: "Test string",
2563
- maxStaleness: "Test string",
2564
- query: "Test string",
2565
- refreshIntervalMs: "Test string",
2566
- },
2567
- maxStaleness: "Test string",
2568
- model: {
2569
- modelOptions: {
2570
- labels: [
2571
- "Test string"
2572
- ],
2573
- lossType: "Test string",
2574
- modelType: "Test string",
2575
- },
2576
- trainingRuns: [
2577
- {
2578
- iterationResults: [
2579
- {
2580
- durationMs: "Test string",
2581
- evalLoss: 42,
2582
- index: 42,
2583
- learnRate: 42,
2584
- trainingLoss: 42,
2585
- }
2586
- ],
2587
- startTime: "Test string",
2588
- state: "Test string",
2589
- trainingOptions: {
2590
- earlyStop: true,
2591
- l1Reg: 42,
2592
- l2Reg: 42,
2593
- learnRate: 42,
2594
- learnRateStrategy: "Test string",
2595
- lineSearchInitLearnRate: 42,
2596
- maxIteration: "Test string",
2597
- minRelProgress: 42,
2598
- warmStart: true,
2599
- },
2600
- }
2601
- ],
2602
- },
2603
- numActiveLogicalBytes: "Test string",
2604
- numActivePhysicalBytes: "Test string",
2605
- numBytes: "Test string",
2606
- numLongTermBytes: "Test string",
2607
- numLongTermLogicalBytes: "Test string",
2608
- numLongTermPhysicalBytes: "Test string",
2609
- numPartitions: "Test string",
2610
- numPhysicalBytes: "Test string",
2611
- numRows: "Test string",
2612
- numTimeTravelPhysicalBytes: "Test string",
2613
- numTotalLogicalBytes: "Test string",
2614
- numTotalPhysicalBytes: "Test string",
2615
- rangePartitioning: {
2616
- field: "Test string",
2617
- range: {
2618
- end: "Test string",
2619
- interval: "Test string",
2620
- start: "Test string",
2621
- },
2622
- },
2623
- requirePartitionFilter: true,
2624
- resourceTags: {
2625
- A: "Test string"
2626
- },
2627
- schema: {
2628
- fields: [
2629
- {
2630
- categories: {
2631
- names: [
2632
- "Test string"
2633
- ],
2634
- },
2635
- collation: "Test string",
2636
- defaultValueExpression: "Test string",
2637
- description: "Test string",
2638
- fields: undefined,
2639
- maxLength: "Test string",
2640
- mode: "Test string",
2641
- name: "Test string",
2642
- policyTags: {
2643
- names: [
2644
- "Test string"
2645
- ],
2646
- },
2647
- precision: "Test string",
2648
- rangeElementType: {
2649
- type: "Test string",
2650
- },
2651
- roundingMode: "Test string",
2652
- scale: "Test string",
2653
- type: "Test string",
2654
- }
2655
- ],
2656
- },
2657
- selfLink: "Test string",
2658
- snapshotDefinition: {
2659
- baseTableReference: {
2660
- datasetId: "Test string",
2661
- projectId: "Test string",
2662
- tableId: "Test string",
2663
- },
2664
- snapshotTime: "Test string",
2665
- },
2666
- streamingBuffer: {
2667
- estimatedBytes: "Test string",
2668
- estimatedRows: "Test string",
2669
- oldestEntryTime: "Test string",
2670
- },
2671
- tableConstraints: {
2672
- foreignKeys: [
2673
- {
2674
- columnReferences: [
2675
- {
2676
- referencedColumn: "Test string",
2677
- referencingColumn: "Test string",
2678
- }
2679
- ],
2680
- name: "Test string",
2681
- referencedTable: {
2682
- datasetId: "Test string",
2683
- projectId: "Test string",
2684
- tableId: "Test string",
2685
- },
2686
- }
2687
- ],
2688
- primaryKey: {
2689
- columns: [
2690
- "Test string"
2691
- ],
2692
- },
2693
- },
2694
- tableReference: {
2695
- datasetId: "Test string",
2696
- projectId: "Test string",
2697
- tableId: "Test string",
2698
- },
2699
- timePartitioning: {
2700
- expirationMs: "Test string",
2701
- field: "Test string",
2702
- requirePartitionFilter: true,
2703
- type: "Test string",
2704
- },
2705
- type: "Test string",
2706
- view: {
2707
- query: "Test string",
2708
- useExplicitColumnNames: true,
2709
- useLegacySql: true,
2710
- userDefinedFunctionResources: [
2711
- {
2712
- inlineCode: "Test string",
2713
- resourceUri: "Test string",
2714
- }
2715
- ],
2716
- },
2717
- });
2718
- /** Lists all tables in the specified dataset. Requires the READER dataset role. */
2719
- await gapi.client.bigquery.tables.list({
2720
- datasetId: "Test string",
2721
- maxResults: 42,
2722
- pageToken: "Test string",
2723
- projectId: "Test string",
2724
- });
2725
- /**
2726
- * Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table
2727
- * resource. This method supports patch semantics.
2728
- */
2729
- await gapi.client.bigquery.tables.patch({
2730
- autodetect_schema: true,
2731
- datasetId: "Test string",
2732
- projectId: "Test string",
2733
- tableId: "Test string",
2734
- }, {
2735
- biglakeConfiguration: {
2736
- connectionId: "Test string",
2737
- fileFormat: "Test string",
2738
- storageUri: "Test string",
2739
- tableFormat: "Test string",
2740
- },
2741
- cloneDefinition: {
2742
- baseTableReference: {
2743
- datasetId: "Test string",
2744
- projectId: "Test string",
2745
- tableId: "Test string",
2746
- },
2747
- cloneTime: "Test string",
2748
- },
2749
- clustering: {
2750
- fields: [
2751
- "Test string"
2752
- ],
2753
- },
2754
- creationTime: "Test string",
2755
- defaultCollation: "Test string",
2756
- defaultRoundingMode: "Test string",
2757
- description: "Test string",
2758
- encryptionConfiguration: {
2759
- kmsKeyName: "Test string",
2760
- },
2761
- etag: "Test string",
2762
- expirationTime: "Test string",
2763
- externalDataConfiguration: {
2764
- autodetect: true,
2765
- avroOptions: {
2766
- useAvroLogicalTypes: true,
2767
- },
2768
- bigtableOptions: {
2769
- columnFamilies: [
2770
- {
2771
- columns: [
2772
- {
2773
- encoding: "Test string",
2774
- fieldName: "Test string",
2775
- onlyReadLatest: true,
2776
- qualifierEncoded: "Test string",
2777
- qualifierString: "Test string",
2778
- type: "Test string",
2779
- }
2780
- ],
2781
- encoding: "Test string",
2782
- familyId: "Test string",
2783
- onlyReadLatest: true,
2784
- type: "Test string",
2785
- }
2786
- ],
2787
- ignoreUnspecifiedColumnFamilies: true,
2788
- readRowkeyAsString: true,
2789
- },
2790
- compression: "Test string",
2791
- connectionId: "Test string",
2792
- csvOptions: {
2793
- allowJaggedRows: true,
2794
- allowQuotedNewlines: true,
2795
- encoding: "Test string",
2796
- fieldDelimiter: "Test string",
2797
- nullMarker: "Test string",
2798
- preserveAsciiControlCharacters: true,
2799
- quote: "Test string",
2800
- skipLeadingRows: "Test string",
2801
- },
2802
- decimalTargetTypes: [
2803
- "Test string"
2804
- ],
2805
- fileSetSpecType: "Test string",
2806
- googleSheetsOptions: {
2807
- range: "Test string",
2808
- skipLeadingRows: "Test string",
2809
- },
2810
- hivePartitioningOptions: {
2811
- fields: [
2812
- "Test string"
2813
- ],
2814
- mode: "Test string",
2815
- requirePartitionFilter: true,
2816
- sourceUriPrefix: "Test string",
2817
- },
2818
- ignoreUnknownValues: true,
2819
- jsonOptions: {
2820
- encoding: "Test string",
2821
- },
2822
- maxBadRecords: 42,
2823
- metadataCacheMode: "Test string",
2824
- objectMetadata: "Test string",
2825
- parquetOptions: {
2826
- enableListInference: true,
2827
- enumAsString: true,
2828
- },
2829
- referenceFileSchemaUri: "Test string",
2830
- schema: {
2831
- fields: [
2832
- {
2833
- categories: {
2834
- names: [
2835
- "Test string"
2836
- ],
2837
- },
2838
- collation: "Test string",
2839
- defaultValueExpression: "Test string",
2840
- description: "Test string",
2841
- fields: undefined,
2842
- maxLength: "Test string",
2843
- mode: "Test string",
2844
- name: "Test string",
2845
- policyTags: {
2846
- names: [
2847
- "Test string"
2848
- ],
2849
- },
2850
- precision: "Test string",
2851
- rangeElementType: {
2852
- type: "Test string",
2853
- },
2854
- roundingMode: "Test string",
2855
- scale: "Test string",
2856
- type: "Test string",
2857
- }
2858
- ],
2859
- },
2860
- sourceFormat: "Test string",
2861
- sourceUris: [
2862
- "Test string"
2863
- ],
2864
- },
2865
- friendlyName: "Test string",
2866
- id: "Test string",
2867
- kind: "Test string",
2868
- labels: {
2869
- A: "Test string"
2870
- },
2871
- lastModifiedTime: "Test string",
2872
- location: "Test string",
2873
- materializedView: {
2874
- allowNonIncrementalDefinition: true,
2875
- enableRefresh: true,
2876
- lastRefreshTime: "Test string",
2877
- maxStaleness: "Test string",
2878
- query: "Test string",
2879
- refreshIntervalMs: "Test string",
2880
- },
2881
- maxStaleness: "Test string",
2882
- model: {
2883
- modelOptions: {
2884
- labels: [
2885
- "Test string"
2886
- ],
2887
- lossType: "Test string",
2888
- modelType: "Test string",
2889
- },
2890
- trainingRuns: [
2891
- {
2892
- iterationResults: [
2893
- {
2894
- durationMs: "Test string",
2895
- evalLoss: 42,
2896
- index: 42,
2897
- learnRate: 42,
2898
- trainingLoss: 42,
2899
- }
2900
- ],
2901
- startTime: "Test string",
2902
- state: "Test string",
2903
- trainingOptions: {
2904
- earlyStop: true,
2905
- l1Reg: 42,
2906
- l2Reg: 42,
2907
- learnRate: 42,
2908
- learnRateStrategy: "Test string",
2909
- lineSearchInitLearnRate: 42,
2910
- maxIteration: "Test string",
2911
- minRelProgress: 42,
2912
- warmStart: true,
2913
- },
2914
- }
2915
- ],
2916
- },
2917
- numActiveLogicalBytes: "Test string",
2918
- numActivePhysicalBytes: "Test string",
2919
- numBytes: "Test string",
2920
- numLongTermBytes: "Test string",
2921
- numLongTermLogicalBytes: "Test string",
2922
- numLongTermPhysicalBytes: "Test string",
2923
- numPartitions: "Test string",
2924
- numPhysicalBytes: "Test string",
2925
- numRows: "Test string",
2926
- numTimeTravelPhysicalBytes: "Test string",
2927
- numTotalLogicalBytes: "Test string",
2928
- numTotalPhysicalBytes: "Test string",
2929
- rangePartitioning: {
2930
- field: "Test string",
2931
- range: {
2932
- end: "Test string",
2933
- interval: "Test string",
2934
- start: "Test string",
2935
- },
2936
- },
2937
- requirePartitionFilter: true,
2938
- resourceTags: {
2939
- A: "Test string"
2940
- },
2941
- schema: {
2942
- fields: [
2943
- {
2944
- categories: {
2945
- names: [
2946
- "Test string"
2947
- ],
2948
- },
2949
- collation: "Test string",
2950
- defaultValueExpression: "Test string",
2951
- description: "Test string",
2952
- fields: undefined,
2953
- maxLength: "Test string",
2954
- mode: "Test string",
2955
- name: "Test string",
2956
- policyTags: {
2957
- names: [
2958
- "Test string"
2959
- ],
2960
- },
2961
- precision: "Test string",
2962
- rangeElementType: {
2963
- type: "Test string",
2964
- },
2965
- roundingMode: "Test string",
2966
- scale: "Test string",
2967
- type: "Test string",
2968
- }
2969
- ],
2970
- },
2971
- selfLink: "Test string",
2972
- snapshotDefinition: {
2973
- baseTableReference: {
2974
- datasetId: "Test string",
2975
- projectId: "Test string",
2976
- tableId: "Test string",
2977
- },
2978
- snapshotTime: "Test string",
2979
- },
2980
- streamingBuffer: {
2981
- estimatedBytes: "Test string",
2982
- estimatedRows: "Test string",
2983
- oldestEntryTime: "Test string",
2984
- },
2985
- tableConstraints: {
2986
- foreignKeys: [
2987
- {
2988
- columnReferences: [
2989
- {
2990
- referencedColumn: "Test string",
2991
- referencingColumn: "Test string",
2992
- }
2993
- ],
2994
- name: "Test string",
2995
- referencedTable: {
2996
- datasetId: "Test string",
2997
- projectId: "Test string",
2998
- tableId: "Test string",
2999
- },
3000
- }
3001
- ],
3002
- primaryKey: {
3003
- columns: [
3004
- "Test string"
3005
- ],
3006
- },
3007
- },
3008
- tableReference: {
3009
- datasetId: "Test string",
3010
- projectId: "Test string",
3011
- tableId: "Test string",
3012
- },
3013
- timePartitioning: {
3014
- expirationMs: "Test string",
3015
- field: "Test string",
3016
- requirePartitionFilter: true,
3017
- type: "Test string",
3018
- },
3019
- type: "Test string",
3020
- view: {
3021
- query: "Test string",
3022
- useExplicitColumnNames: true,
3023
- useLegacySql: true,
3024
- userDefinedFunctionResources: [
3025
- {
3026
- inlineCode: "Test string",
3027
- resourceUri: "Test string",
3028
- }
3029
- ],
3030
- },
3031
- });
3032
- /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
3033
- await gapi.client.bigquery.tables.setIamPolicy({
3034
- resource: "Test string",
3035
- }, {
3036
- policy: {
3037
- auditConfigs: [
3038
- {
3039
- auditLogConfigs: [
3040
- {
3041
- exemptedMembers: [
3042
- "Test string"
3043
- ],
3044
- logType: "Test string",
3045
- }
3046
- ],
3047
- service: "Test string",
3048
- }
3049
- ],
3050
- bindings: [
3051
- {
3052
- condition: {
3053
- description: "Test string",
3054
- expression: "Test string",
3055
- location: "Test string",
3056
- title: "Test string",
3057
- },
3058
- members: [
3059
- "Test string"
3060
- ],
3061
- role: "Test string",
3062
- }
3063
- ],
3064
- etag: "Test string",
3065
- version: 42,
3066
- },
3067
- updateMask: "Test string",
3068
- });
3069
- /**
3070
- * Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This
3071
- * operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
3072
- */
3073
- await gapi.client.bigquery.tables.testIamPermissions({
3074
- resource: "Test string",
3075
- }, {
3076
- permissions: [
3077
- "Test string"
3078
- ],
3079
- });
3080
- /**
3081
- * Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table
3082
- * resource.
3083
- */
3084
- await gapi.client.bigquery.tables.update({
3085
- autodetect_schema: true,
3086
- datasetId: "Test string",
3087
- projectId: "Test string",
3088
- tableId: "Test string",
3089
- }, {
3090
- biglakeConfiguration: {
3091
- connectionId: "Test string",
3092
- fileFormat: "Test string",
3093
- storageUri: "Test string",
3094
- tableFormat: "Test string",
3095
- },
3096
- cloneDefinition: {
3097
- baseTableReference: {
3098
- datasetId: "Test string",
3099
- projectId: "Test string",
3100
- tableId: "Test string",
3101
- },
3102
- cloneTime: "Test string",
3103
- },
3104
- clustering: {
3105
- fields: [
3106
- "Test string"
3107
- ],
3108
- },
3109
- creationTime: "Test string",
3110
- defaultCollation: "Test string",
3111
- defaultRoundingMode: "Test string",
3112
- description: "Test string",
3113
- encryptionConfiguration: {
3114
- kmsKeyName: "Test string",
3115
- },
3116
- etag: "Test string",
3117
- expirationTime: "Test string",
3118
- externalDataConfiguration: {
3119
- autodetect: true,
3120
- avroOptions: {
3121
- useAvroLogicalTypes: true,
3122
- },
3123
- bigtableOptions: {
3124
- columnFamilies: [
3125
- {
3126
- columns: [
3127
- {
3128
- encoding: "Test string",
3129
- fieldName: "Test string",
3130
- onlyReadLatest: true,
3131
- qualifierEncoded: "Test string",
3132
- qualifierString: "Test string",
3133
- type: "Test string",
3134
- }
3135
- ],
3136
- encoding: "Test string",
3137
- familyId: "Test string",
3138
- onlyReadLatest: true,
3139
- type: "Test string",
3140
- }
3141
- ],
3142
- ignoreUnspecifiedColumnFamilies: true,
3143
- readRowkeyAsString: true,
3144
- },
3145
- compression: "Test string",
3146
- connectionId: "Test string",
3147
- csvOptions: {
3148
- allowJaggedRows: true,
3149
- allowQuotedNewlines: true,
3150
- encoding: "Test string",
3151
- fieldDelimiter: "Test string",
3152
- nullMarker: "Test string",
3153
- preserveAsciiControlCharacters: true,
3154
- quote: "Test string",
3155
- skipLeadingRows: "Test string",
3156
- },
3157
- decimalTargetTypes: [
3158
- "Test string"
3159
- ],
3160
- fileSetSpecType: "Test string",
3161
- googleSheetsOptions: {
3162
- range: "Test string",
3163
- skipLeadingRows: "Test string",
3164
- },
3165
- hivePartitioningOptions: {
3166
- fields: [
3167
- "Test string"
3168
- ],
3169
- mode: "Test string",
3170
- requirePartitionFilter: true,
3171
- sourceUriPrefix: "Test string",
3172
- },
3173
- ignoreUnknownValues: true,
3174
- jsonOptions: {
3175
- encoding: "Test string",
3176
- },
3177
- maxBadRecords: 42,
3178
- metadataCacheMode: "Test string",
3179
- objectMetadata: "Test string",
3180
- parquetOptions: {
3181
- enableListInference: true,
3182
- enumAsString: true,
3183
- },
3184
- referenceFileSchemaUri: "Test string",
3185
- schema: {
3186
- fields: [
3187
- {
3188
- categories: {
3189
- names: [
3190
- "Test string"
3191
- ],
3192
- },
3193
- collation: "Test string",
3194
- defaultValueExpression: "Test string",
3195
- description: "Test string",
3196
- fields: undefined,
3197
- maxLength: "Test string",
3198
- mode: "Test string",
3199
- name: "Test string",
3200
- policyTags: {
3201
- names: [
3202
- "Test string"
3203
- ],
3204
- },
3205
- precision: "Test string",
3206
- rangeElementType: {
3207
- type: "Test string",
3208
- },
3209
- roundingMode: "Test string",
3210
- scale: "Test string",
3211
- type: "Test string",
3212
- }
3213
- ],
3214
- },
3215
- sourceFormat: "Test string",
3216
- sourceUris: [
3217
- "Test string"
3218
- ],
3219
- },
3220
- friendlyName: "Test string",
3221
- id: "Test string",
3222
- kind: "Test string",
3223
- labels: {
3224
- A: "Test string"
3225
- },
3226
- lastModifiedTime: "Test string",
3227
- location: "Test string",
3228
- materializedView: {
3229
- allowNonIncrementalDefinition: true,
3230
- enableRefresh: true,
3231
- lastRefreshTime: "Test string",
3232
- maxStaleness: "Test string",
3233
- query: "Test string",
3234
- refreshIntervalMs: "Test string",
3235
- },
3236
- maxStaleness: "Test string",
3237
- model: {
3238
- modelOptions: {
3239
- labels: [
3240
- "Test string"
3241
- ],
3242
- lossType: "Test string",
3243
- modelType: "Test string",
3244
- },
3245
- trainingRuns: [
3246
- {
3247
- iterationResults: [
3248
- {
3249
- durationMs: "Test string",
3250
- evalLoss: 42,
3251
- index: 42,
3252
- learnRate: 42,
3253
- trainingLoss: 42,
3254
- }
3255
- ],
3256
- startTime: "Test string",
3257
- state: "Test string",
3258
- trainingOptions: {
3259
- earlyStop: true,
3260
- l1Reg: 42,
3261
- l2Reg: 42,
3262
- learnRate: 42,
3263
- learnRateStrategy: "Test string",
3264
- lineSearchInitLearnRate: 42,
3265
- maxIteration: "Test string",
3266
- minRelProgress: 42,
3267
- warmStart: true,
3268
- },
3269
- }
3270
- ],
3271
- },
3272
- numActiveLogicalBytes: "Test string",
3273
- numActivePhysicalBytes: "Test string",
3274
- numBytes: "Test string",
3275
- numLongTermBytes: "Test string",
3276
- numLongTermLogicalBytes: "Test string",
3277
- numLongTermPhysicalBytes: "Test string",
3278
- numPartitions: "Test string",
3279
- numPhysicalBytes: "Test string",
3280
- numRows: "Test string",
3281
- numTimeTravelPhysicalBytes: "Test string",
3282
- numTotalLogicalBytes: "Test string",
3283
- numTotalPhysicalBytes: "Test string",
3284
- rangePartitioning: {
3285
- field: "Test string",
3286
- range: {
3287
- end: "Test string",
3288
- interval: "Test string",
3289
- start: "Test string",
3290
- },
3291
- },
3292
- requirePartitionFilter: true,
3293
- resourceTags: {
3294
- A: "Test string"
3295
- },
3296
- schema: {
3297
- fields: [
3298
- {
3299
- categories: {
3300
- names: [
3301
- "Test string"
3302
- ],
3303
- },
3304
- collation: "Test string",
3305
- defaultValueExpression: "Test string",
3306
- description: "Test string",
3307
- fields: undefined,
3308
- maxLength: "Test string",
3309
- mode: "Test string",
3310
- name: "Test string",
3311
- policyTags: {
3312
- names: [
3313
- "Test string"
3314
- ],
3315
- },
3316
- precision: "Test string",
3317
- rangeElementType: {
3318
- type: "Test string",
3319
- },
3320
- roundingMode: "Test string",
3321
- scale: "Test string",
3322
- type: "Test string",
3323
- }
3324
- ],
3325
- },
3326
- selfLink: "Test string",
3327
- snapshotDefinition: {
3328
- baseTableReference: {
3329
- datasetId: "Test string",
3330
- projectId: "Test string",
3331
- tableId: "Test string",
3332
- },
3333
- snapshotTime: "Test string",
3334
- },
3335
- streamingBuffer: {
3336
- estimatedBytes: "Test string",
3337
- estimatedRows: "Test string",
3338
- oldestEntryTime: "Test string",
3339
- },
3340
- tableConstraints: {
3341
- foreignKeys: [
3342
- {
3343
- columnReferences: [
3344
- {
3345
- referencedColumn: "Test string",
3346
- referencingColumn: "Test string",
3347
- }
3348
- ],
3349
- name: "Test string",
3350
- referencedTable: {
3351
- datasetId: "Test string",
3352
- projectId: "Test string",
3353
- tableId: "Test string",
3354
- },
3355
- }
3356
- ],
3357
- primaryKey: {
3358
- columns: [
3359
- "Test string"
3360
- ],
3361
- },
3362
- },
3363
- tableReference: {
3364
- datasetId: "Test string",
3365
- projectId: "Test string",
3366
- tableId: "Test string",
3367
- },
3368
- timePartitioning: {
3369
- expirationMs: "Test string",
3370
- field: "Test string",
3371
- requirePartitionFilter: true,
3372
- type: "Test string",
3373
- },
3374
- type: "Test string",
3375
- view: {
3376
- query: "Test string",
3377
- useExplicitColumnNames: true,
3378
- useLegacySql: true,
3379
- userDefinedFunctionResources: [
3380
- {
3381
- inlineCode: "Test string",
3382
- resourceUri: "Test string",
3383
- }
3384
- ],
3385
- },
3386
- });
3387
- }
3388
- });