File: bigquery_v2.tables.html

package info (click to toggle)
python-googleapi 2.182.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 533,852 kB
  • sloc: python: 11,076; javascript: 249; sh: 114; makefile: 59
file content (3466 lines) | stat: -rw-r--r-- 561,681 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
<html><body>
<style>

body, h1, h2, h3, div, span, p, pre, a {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body {
  font-size: 13px;
  padding: 1em;
}

h1 {
  font-size: 26px;
  margin-bottom: 1em;
}

h2 {
  font-size: 24px;
  margin-bottom: 1em;
}

h3 {
  font-size: 20px;
  margin-bottom: 1em;
  margin-top: 1em;
}

pre, code {
  line-height: 1.5;
  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}

pre {
  margin-top: 0.5em;
}

h1, h2, h3, p {
  font-family: Arial, sans serif;
}

h1, h2, h3 {
  border-bottom: solid #CCC 1px;
}

.toc_element {
  margin-top: 0.5em;
}

.firstline {
  margin-left: 2 em;
}

.method  {
  margin-top: 1em;
  border: solid 1px #CCC;
  padding: 1em;
  background: #EEE;
}

.details {
  font-weight: bold;
  font-size: 14px;
}

</style>

<h1><a href="bigquery_v2.html">BigQuery API</a> . <a href="bigquery_v2.tables.html">tables</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
  <code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
  <code><a href="#delete">delete(projectId, datasetId, tableId, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.</p>
<p class="toc_element">
  <code><a href="#get">get(projectId, datasetId, tableId, selectedFields=None, view=None, x__xgafv=None)</a></code></p>
<p class="firstline">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.</p>
<p class="toc_element">
  <code><a href="#getIamPolicy">getIamPolicy(resource, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.</p>
<p class="toc_element">
  <code><a href="#insert">insert(projectId, datasetId, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates a new, empty table in the dataset.</p>
<p class="toc_element">
  <code><a href="#list">list(projectId, datasetId, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists all tables in the specified dataset. Requires the READER dataset role.</p>
<p class="toc_element">
  <code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
  <code><a href="#patch">patch(projectId, datasetId, tableId, autodetect_schema=None, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">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 resource. This method supports RFC5789 patch semantics.</p>
<p class="toc_element">
  <code><a href="#setIamPolicy">setIamPolicy(resource, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.</p>
<p class="toc_element">
  <code><a href="#testIamPermissions">testIamPermissions(resource, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">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 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.</p>
<p class="toc_element">
  <code><a href="#update">update(projectId, datasetId, tableId, autodetect_schema=None, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">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 resource.</p>
<h3>Method Details</h3>
<div class="method">
    <code class="details" id="close">close()</code>
  <pre>Close httplib2 connections.</pre>
</div>

<div class="method">
    <code class="details" id="delete">delete(projectId, datasetId, tableId, x__xgafv=None)</code>
  <pre>Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.

Args:
  projectId: string, Required. Project ID of the table to delete (required)
  datasetId: string, Required. Dataset ID of the table to delete (required)
  tableId: string, Required. Table ID of the table to delete (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format
</pre>
</div>

<div class="method">
    <code class="details" id="get">get(projectId, datasetId, tableId, selectedFields=None, view=None, x__xgafv=None)</code>
  <pre>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.

Args:
  projectId: string, Required. Project ID of the requested table (required)
  datasetId: string, Required. Dataset ID of the requested table (required)
  tableId: string, Required. Table ID of the requested table (required)
  selectedFields: string, List of table schema fields to return (comma-separated). If unspecified, all fields are returned. A fieldMask cannot be used here because the fields will automatically be converted from camelCase to snake_case and the conversion will fail if there are underscores. Since these are fields in BigQuery table schemas, underscores are allowed.
  view: string, Optional. Specifies the view that determines which table information is returned. By default, basic table information and storage statistics (STORAGE_STATS) are returned.
    Allowed values
      TABLE_METADATA_VIEW_UNSPECIFIED - The default value. Default to the STORAGE_STATS view.
      BASIC - Includes basic table information including schema and partitioning specification. This view does not include storage statistics such as numRows or numBytes. This view is significantly more efficient and should be used to support high query rates.
      STORAGE_STATS - Includes all information in the BASIC view as well as storage statistics (numBytes, numLongTermBytes, numRows and lastModifiedTime).
      FULL - Includes all table information, including storage statistics. It returns same information as STORAGE_STATS view, but may contain additional information in the future.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}</pre>
</div>

<div class="method">
    <code class="details" id="getIamPolicy">getIamPolicy(resource, body=None, x__xgafv=None)</code>
  <pre>Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

Args:
  resource: string, REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for `GetIamPolicy` method.
  &quot;options&quot;: { # Encapsulates settings provided to GetIamPolicy. # OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`.
    &quot;requestedPolicyVersion&quot;: 42, # Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
  },
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { &quot;bindings&quot;: [ { &quot;role&quot;: &quot;roles/resourcemanager.organizationAdmin&quot;, &quot;members&quot;: [ &quot;user:mike@example.com&quot;, &quot;group:admins@example.com&quot;, &quot;domain:google.com&quot;, &quot;serviceAccount:my-project-id@appspot.gserviceaccount.com&quot; ] }, { &quot;role&quot;: &quot;roles/resourcemanager.organizationViewer&quot;, &quot;members&quot;: [ &quot;user:eve@example.com&quot; ], &quot;condition&quot;: { &quot;title&quot;: &quot;expirable access&quot;, &quot;description&quot;: &quot;Does not grant access after Sep 2020&quot;, &quot;expression&quot;: &quot;request.time &lt; timestamp(&#x27;2020-10-01T00:00:00.000Z&#x27;)&quot;, } } ], &quot;etag&quot;: &quot;BwWWja0YfJA=&quot;, &quot;version&quot;: 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time &lt; timestamp(&#x27;2020-10-01T00:00:00.000Z&#x27;) etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/).
  &quot;auditConfigs&quot;: [ # Specifies cloud audit logging configuration for this policy.
    { # Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { &quot;audit_configs&quot;: [ { &quot;service&quot;: &quot;allServices&quot;, &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot;, &quot;exempted_members&quot;: [ &quot;user:jose@example.com&quot; ] }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot; }, { &quot;log_type&quot;: &quot;ADMIN_READ&quot; } ] }, { &quot;service&quot;: &quot;sampleservice.googleapis.com&quot;, &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot; }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot;, &quot;exempted_members&quot;: [ &quot;user:aliya@example.com&quot; ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com` from DATA_WRITE logging.
      &quot;auditLogConfigs&quot;: [ # The configuration for logging of each type of permission.
        { # Provides the configuration for logging a type of permissions. Example: { &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot;, &quot;exempted_members&quot;: [ &quot;user:jose@example.com&quot; ] }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot; } ] } This enables &#x27;DATA_READ&#x27; and &#x27;DATA_WRITE&#x27; logging, while exempting jose@example.com from DATA_READ logging.
          &quot;exemptedMembers&quot;: [ # Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
            &quot;A String&quot;,
          ],
          &quot;logType&quot;: &quot;A String&quot;, # The log type that this config enables.
        },
      ],
      &quot;service&quot;: &quot;A String&quot;, # Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
    },
  ],
  &quot;bindings&quot;: [ # Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
    { # Associates `members`, or principals, with a `role`.
      &quot;condition&quot;: { # Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: &quot;Summary size limit&quot; description: &quot;Determines if a summary is less than 100 chars&quot; expression: &quot;document.summary.size() &lt; 100&quot; Example (Equality): title: &quot;Requestor is owner&quot; description: &quot;Determines if requestor is the document owner&quot; expression: &quot;document.owner == request.auth.claims.email&quot; Example (Logic): title: &quot;Public documents&quot; description: &quot;Determine whether the document should be publicly visible&quot; expression: &quot;document.type != &#x27;private&#x27; &amp;&amp; document.type != &#x27;internal&#x27;&quot; Example (Data Manipulation): title: &quot;Notification string&quot; description: &quot;Create a notification string with a timestamp.&quot; expression: &quot;&#x27;New message received at &#x27; + string(document.create_time)&quot; The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. # The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
        &quot;description&quot;: &quot;A String&quot;, # Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
        &quot;expression&quot;: &quot;A String&quot;, # Textual representation of an expression in Common Expression Language syntax.
        &quot;location&quot;: &quot;A String&quot;, # Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
        &quot;title&quot;: &quot;A String&quot;, # Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
      },
      &quot;members&quot;: [ # Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.
        &quot;A String&quot;,
      ],
      &quot;role&quot;: &quot;A String&quot;, # Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).
    },
  ],
  &quot;etag&quot;: &quot;A String&quot;, # `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
  &quot;version&quot;: 42, # Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
}</pre>
</div>

<div class="method">
    <code class="details" id="insert">insert(projectId, datasetId, body=None, x__xgafv=None)</code>
  <pre>Creates a new, empty table in the dataset.

Args:
  projectId: string, Required. Project ID of the new table (required)
  datasetId: string, Required. Dataset ID of the new table (required)
  body: object, The request body.
    The object takes the form of:

{
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}</pre>
</div>

<div class="method">
    <code class="details" id="list">list(projectId, datasetId, maxResults=None, pageToken=None, x__xgafv=None)</code>
  <pre>Lists all tables in the specified dataset. Requires the READER dataset role.

Args:
  projectId: string, Required. Project ID of the tables to list (required)
  datasetId: string, Required. Dataset ID of the tables to list (required)
  maxResults: integer, The maximum number of results to return in a single response page. Leverage the page tokens to iterate through the entire collection.
  pageToken: string, Page token, returned by a previous call, to request the next page of results
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Partial projection of the metadata for a given table in a list response.
  &quot;etag&quot;: &quot;A String&quot;, # A hash of this page of results.
  &quot;kind&quot;: &quot;bigquery#tableList&quot;, # The type of list.
  &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to request the next page of results.
  &quot;tables&quot;: [ # Tables in the requested dataset.
    {
      &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for this table, if configured.
        &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
          &quot;A String&quot;,
        ],
      },
      &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
      &quot;expirationTime&quot;: &quot;A String&quot;, # The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
      &quot;friendlyName&quot;: &quot;A String&quot;, # The user-friendly name for this table.
      &quot;id&quot;: &quot;A String&quot;, # An opaque ID of the table.
      &quot;kind&quot;: &quot;A String&quot;, # The resource type.
      &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables.
        &quot;a_key&quot;: &quot;A String&quot;,
      },
      &quot;rangePartitioning&quot;: { # The range partitioning for this table.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
        &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
          &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
          &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
          &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
        },
      },
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries including this table must specify a partition filter. This filter is used for partition elimination.
      &quot;tableReference&quot;: { # A reference uniquely identifying table.
        &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
        &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
        &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
      },
      &quot;timePartitioning&quot;: { # The time-based partitioning for this table.
        &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
        &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
        &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
        &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
      },
      &quot;type&quot;: &quot;A String&quot;, # The type of table.
      &quot;view&quot;: { # Information about a logical view.
        &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Specifies the privacy policy for the view.
          &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
            &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
              &quot;A String&quot;,
            ],
            &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
          },
          &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
            &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
            &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
            &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
            &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
            &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
            &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
            &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
            &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
          },
          &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
            &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
              &quot;A String&quot;,
            ],
            &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
          },
        },
        &quot;useLegacySql&quot;: True or False, # True if view is defined in legacy SQL dialect, false if in GoogleSQL.
      },
    },
  ],
  &quot;totalItems&quot;: 42, # The total number of tables in the dataset.
}</pre>
</div>

<div class="method">
    <code class="details" id="list_next">list_next()</code>
  <pre>Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call &#x27;execute()&#x27; on to request the next
          page. Returns None if there are no more items in the collection.
        </pre>
</div>

<div class="method">
    <code class="details" id="patch">patch(projectId, datasetId, tableId, autodetect_schema=None, body=None, x__xgafv=None)</code>
  <pre>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 resource. This method supports RFC5789 patch semantics.

Args:
  projectId: string, Required. Project ID of the table to update (required)
  datasetId: string, Required. Dataset ID of the table to update (required)
  tableId: string, Required. Table ID of the table to update (required)
  body: object, The request body.
    The object takes the form of:

{
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}

  autodetect_schema: boolean, Optional.  When true will autodetect schema, else will keep original schema
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}</pre>
</div>

<div class="method">
    <code class="details" id="setIamPolicy">setIamPolicy(resource, body=None, x__xgafv=None)</code>
  <pre>Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.

Args:
  resource: string, REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for `SetIamPolicy` method.
  &quot;policy&quot;: { # An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { &quot;bindings&quot;: [ { &quot;role&quot;: &quot;roles/resourcemanager.organizationAdmin&quot;, &quot;members&quot;: [ &quot;user:mike@example.com&quot;, &quot;group:admins@example.com&quot;, &quot;domain:google.com&quot;, &quot;serviceAccount:my-project-id@appspot.gserviceaccount.com&quot; ] }, { &quot;role&quot;: &quot;roles/resourcemanager.organizationViewer&quot;, &quot;members&quot;: [ &quot;user:eve@example.com&quot; ], &quot;condition&quot;: { &quot;title&quot;: &quot;expirable access&quot;, &quot;description&quot;: &quot;Does not grant access after Sep 2020&quot;, &quot;expression&quot;: &quot;request.time &lt; timestamp(&#x27;2020-10-01T00:00:00.000Z&#x27;)&quot;, } } ], &quot;etag&quot;: &quot;BwWWja0YfJA=&quot;, &quot;version&quot;: 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time &lt; timestamp(&#x27;2020-10-01T00:00:00.000Z&#x27;) etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/). # REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them.
    &quot;auditConfigs&quot;: [ # Specifies cloud audit logging configuration for this policy.
      { # Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { &quot;audit_configs&quot;: [ { &quot;service&quot;: &quot;allServices&quot;, &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot;, &quot;exempted_members&quot;: [ &quot;user:jose@example.com&quot; ] }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot; }, { &quot;log_type&quot;: &quot;ADMIN_READ&quot; } ] }, { &quot;service&quot;: &quot;sampleservice.googleapis.com&quot;, &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot; }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot;, &quot;exempted_members&quot;: [ &quot;user:aliya@example.com&quot; ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com` from DATA_WRITE logging.
        &quot;auditLogConfigs&quot;: [ # The configuration for logging of each type of permission.
          { # Provides the configuration for logging a type of permissions. Example: { &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot;, &quot;exempted_members&quot;: [ &quot;user:jose@example.com&quot; ] }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot; } ] } This enables &#x27;DATA_READ&#x27; and &#x27;DATA_WRITE&#x27; logging, while exempting jose@example.com from DATA_READ logging.
            &quot;exemptedMembers&quot;: [ # Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
              &quot;A String&quot;,
            ],
            &quot;logType&quot;: &quot;A String&quot;, # The log type that this config enables.
          },
        ],
        &quot;service&quot;: &quot;A String&quot;, # Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
      },
    ],
    &quot;bindings&quot;: [ # Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
      { # Associates `members`, or principals, with a `role`.
        &quot;condition&quot;: { # Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: &quot;Summary size limit&quot; description: &quot;Determines if a summary is less than 100 chars&quot; expression: &quot;document.summary.size() &lt; 100&quot; Example (Equality): title: &quot;Requestor is owner&quot; description: &quot;Determines if requestor is the document owner&quot; expression: &quot;document.owner == request.auth.claims.email&quot; Example (Logic): title: &quot;Public documents&quot; description: &quot;Determine whether the document should be publicly visible&quot; expression: &quot;document.type != &#x27;private&#x27; &amp;&amp; document.type != &#x27;internal&#x27;&quot; Example (Data Manipulation): title: &quot;Notification string&quot; description: &quot;Create a notification string with a timestamp.&quot; expression: &quot;&#x27;New message received at &#x27; + string(document.create_time)&quot; The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. # The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
          &quot;description&quot;: &quot;A String&quot;, # Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
          &quot;expression&quot;: &quot;A String&quot;, # Textual representation of an expression in Common Expression Language syntax.
          &quot;location&quot;: &quot;A String&quot;, # Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
          &quot;title&quot;: &quot;A String&quot;, # Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
        },
        &quot;members&quot;: [ # Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.
          &quot;A String&quot;,
        ],
        &quot;role&quot;: &quot;A String&quot;, # Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).
      },
    ],
    &quot;etag&quot;: &quot;A String&quot;, # `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
    &quot;version&quot;: 42, # Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
  },
  &quot;updateMask&quot;: &quot;A String&quot;, # OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used: `paths: &quot;bindings, etag&quot;`
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { &quot;bindings&quot;: [ { &quot;role&quot;: &quot;roles/resourcemanager.organizationAdmin&quot;, &quot;members&quot;: [ &quot;user:mike@example.com&quot;, &quot;group:admins@example.com&quot;, &quot;domain:google.com&quot;, &quot;serviceAccount:my-project-id@appspot.gserviceaccount.com&quot; ] }, { &quot;role&quot;: &quot;roles/resourcemanager.organizationViewer&quot;, &quot;members&quot;: [ &quot;user:eve@example.com&quot; ], &quot;condition&quot;: { &quot;title&quot;: &quot;expirable access&quot;, &quot;description&quot;: &quot;Does not grant access after Sep 2020&quot;, &quot;expression&quot;: &quot;request.time &lt; timestamp(&#x27;2020-10-01T00:00:00.000Z&#x27;)&quot;, } } ], &quot;etag&quot;: &quot;BwWWja0YfJA=&quot;, &quot;version&quot;: 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time &lt; timestamp(&#x27;2020-10-01T00:00:00.000Z&#x27;) etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/).
  &quot;auditConfigs&quot;: [ # Specifies cloud audit logging configuration for this policy.
    { # Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { &quot;audit_configs&quot;: [ { &quot;service&quot;: &quot;allServices&quot;, &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot;, &quot;exempted_members&quot;: [ &quot;user:jose@example.com&quot; ] }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot; }, { &quot;log_type&quot;: &quot;ADMIN_READ&quot; } ] }, { &quot;service&quot;: &quot;sampleservice.googleapis.com&quot;, &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot; }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot;, &quot;exempted_members&quot;: [ &quot;user:aliya@example.com&quot; ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com` from DATA_WRITE logging.
      &quot;auditLogConfigs&quot;: [ # The configuration for logging of each type of permission.
        { # Provides the configuration for logging a type of permissions. Example: { &quot;audit_log_configs&quot;: [ { &quot;log_type&quot;: &quot;DATA_READ&quot;, &quot;exempted_members&quot;: [ &quot;user:jose@example.com&quot; ] }, { &quot;log_type&quot;: &quot;DATA_WRITE&quot; } ] } This enables &#x27;DATA_READ&#x27; and &#x27;DATA_WRITE&#x27; logging, while exempting jose@example.com from DATA_READ logging.
          &quot;exemptedMembers&quot;: [ # Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
            &quot;A String&quot;,
          ],
          &quot;logType&quot;: &quot;A String&quot;, # The log type that this config enables.
        },
      ],
      &quot;service&quot;: &quot;A String&quot;, # Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
    },
  ],
  &quot;bindings&quot;: [ # Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
    { # Associates `members`, or principals, with a `role`.
      &quot;condition&quot;: { # Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: &quot;Summary size limit&quot; description: &quot;Determines if a summary is less than 100 chars&quot; expression: &quot;document.summary.size() &lt; 100&quot; Example (Equality): title: &quot;Requestor is owner&quot; description: &quot;Determines if requestor is the document owner&quot; expression: &quot;document.owner == request.auth.claims.email&quot; Example (Logic): title: &quot;Public documents&quot; description: &quot;Determine whether the document should be publicly visible&quot; expression: &quot;document.type != &#x27;private&#x27; &amp;&amp; document.type != &#x27;internal&#x27;&quot; Example (Data Manipulation): title: &quot;Notification string&quot; description: &quot;Create a notification string with a timestamp.&quot; expression: &quot;&#x27;New message received at &#x27; + string(document.create_time)&quot; The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information. # The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
        &quot;description&quot;: &quot;A String&quot;, # Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
        &quot;expression&quot;: &quot;A String&quot;, # Textual representation of an expression in Common Expression Language syntax.
        &quot;location&quot;: &quot;A String&quot;, # Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
        &quot;title&quot;: &quot;A String&quot;, # Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
      },
      &quot;members&quot;: [ # Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.
        &quot;A String&quot;,
      ],
      &quot;role&quot;: &quot;A String&quot;, # Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).
    },
  ],
  &quot;etag&quot;: &quot;A String&quot;, # `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
  &quot;version&quot;: 42, # Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
}</pre>
</div>

<div class="method">
    <code class="details" id="testIamPermissions">testIamPermissions(resource, body=None, x__xgafv=None)</code>
  <pre>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 operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may &quot;fail open&quot; without warning.

Args:
  resource: string, REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for `TestIamPermissions` method.
  &quot;permissions&quot;: [ # The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
    &quot;A String&quot;,
  ],
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for `TestIamPermissions` method.
  &quot;permissions&quot;: [ # A subset of `TestPermissionsRequest.permissions` that the caller is allowed.
    &quot;A String&quot;,
  ],
}</pre>
</div>

<div class="method">
    <code class="details" id="update">update(projectId, datasetId, tableId, autodetect_schema=None, body=None, x__xgafv=None)</code>
  <pre>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 resource.

Args:
  projectId: string, Required. Project ID of the table to update (required)
  datasetId: string, Required. Dataset ID of the table to update (required)
  tableId: string, Required. Table ID of the table to update (required)
  body: object, The request body.
    The object takes the form of:

{
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}

  autodetect_schema: boolean, Optional.  When true will autodetect schema, else will keep original schema
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
  &quot;biglakeConfiguration&quot;: { # Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed tables.) # Optional. Specifies the configuration of a BigQuery table for Apache Iceberg.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}&quot;.
    &quot;fileFormat&quot;: &quot;A String&quot;, # Optional. The file format the table data is stored in.
    &quot;storageUri&quot;: &quot;A String&quot;, # Optional. The fully qualified location prefix of the external folder where table data is stored. The &#x27;*&#x27; wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
    &quot;tableFormat&quot;: &quot;A String&quot;, # Optional. The table format the metadata only snapshots are stored in.
  },
  &quot;cloneDefinition&quot;: { # Information about base table and clone time of a table clone. # Output only. Contains information about the clone. This value is set via the clone operation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was cloned.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;cloneTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was cloned. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;clustering&quot;: { # Configures table clustering. # Clustering specification for the table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
    &quot;fields&quot;: [ # One or more fields on which data should be clustered. Only top-level, non-repeated, simple-type fields are supported. The ordering of the clustering fields should be prioritized from most to least important for filtering purposes. For additional information, see [Introduction to clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
      &quot;A String&quot;,
    ],
  },
  &quot;creationTime&quot;: &quot;A String&quot;, # Output only. The time when this table was created, in milliseconds since the epoch.
  &quot;defaultCollation&quot;: &quot;A String&quot;, # Optional. Defines the default collation specification of new STRING fields in the table. During table creation or update, if a STRING field is added to this table without explicit collation specified, then the table inherits the table default collation. A change to this field affects only fields added afterwards, and does not alter the existing fields. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
  &quot;defaultRoundingMode&quot;: &quot;A String&quot;, # Optional. Defines the default rounding mode specification of new decimal fields (NUMERIC OR BIGNUMERIC) in the table. During table creation or update, if a decimal field is added to this table without an explicit rounding mode specified, then the field inherits the table default rounding mode. Changing this field doesn&#x27;t affect existing fields.
  &quot;description&quot;: &quot;A String&quot;, # Optional. A user-friendly description of this table.
  &quot;encryptionConfiguration&quot;: { # Configuration for Cloud KMS encryption settings. # Custom encryption configuration (e.g., Cloud KMS keys).
    &quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
  },
  &quot;etag&quot;: &quot;A String&quot;, # Output only. A hash of this resource.
  &quot;expirationTime&quot;: &quot;A String&quot;, # Optional. The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed. The defaultTableExpirationMs property of the encapsulating dataset can be used to set a default expirationTime on newly created tables.
  &quot;externalCatalogTableOptions&quot;: { # Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore&#x27;s table-level properties. # Optional. Options defining open source compatible table.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either `..` or `projects//locations//connections/`.
    &quot;parameters&quot;: { # Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;storageDescriptor&quot;: { # Contains information about how a table&#x27;s data is stored and accessed by open source query engines. # Optional. A storage descriptor containing information about the physical storage of this table.
      &quot;inputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the InputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcInputFormat&quot;). The maximum length is 128 characters.
      &quot;locationUri&quot;: &quot;A String&quot;, # Optional. The physical location of the table (e.g. `gs://spark-dataproc-data/pangea-data/case_sensitive/` or `gs://spark-dataproc-data/pangea-data/*`). The maximum length is 2056 bytes.
      &quot;outputFormat&quot;: &quot;A String&quot;, # Optional. Specifies the fully qualified class name of the OutputFormat (e.g. &quot;org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat&quot;). The maximum length is 128 characters.
      &quot;serdeInfo&quot;: { # Serializer and deserializer information. # Optional. Serializer and deserializer information.
        &quot;name&quot;: &quot;A String&quot;, # Optional. Name of the SerDe. The maximum length is 256 characters.
        &quot;parameters&quot;: { # Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;serializationLibrary&quot;: &quot;A String&quot;, # Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
      },
    },
  },
  &quot;externalDataConfiguration&quot;: { # Optional. Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
    &quot;autodetect&quot;: True or False, # Try to detect schema and format options automatically. Any option specified explicitly will be honored.
    &quot;avroOptions&quot;: { # Options for external data sources. # Optional. Additional properties to set if sourceFormat is set to AVRO.
      &quot;useAvroLogicalTypes&quot;: True or False, # Optional. If sourceFormat is set to &quot;AVRO&quot;, indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
    },
    &quot;bigtableOptions&quot;: { # Options specific to Google Cloud Bigtable data sources. # Optional. Additional options if sourceFormat is set to BIGTABLE.
      &quot;columnFamilies&quot;: [ # Optional. List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the &#x27;type&#x27; field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.
        { # Information related to a Bigtable column family.
          &quot;columns&quot;: [ # Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field.
            { # Information related to a Bigtable column.
              &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. &#x27;encoding&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;encoding&#x27; is set at both levels.
              &quot;fieldName&quot;: &quot;A String&quot;, # Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries.
              &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set, only the latest version of value in this column are exposed. &#x27;onlyReadLatest&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;onlyReadLatest&#x27; is set at both levels.
              &quot;qualifierEncoded&quot;: &quot;A String&quot;, # [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name.
              &quot;qualifierString&quot;: &quot;A String&quot;, # Qualifier string.
              &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. &#x27;type&#x27; can also be set at the column family level. However, the setting at this level takes precedence if &#x27;type&#x27; is set at both levels.
            },
          ],
          &quot;encoding&quot;: &quot;A String&quot;, # Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying an encoding for it.
          &quot;familyId&quot;: &quot;A String&quot;, # Identifier of the column family.
          &quot;onlyReadLatest&quot;: True or False, # Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a different setting for that column.
          &quot;type&quot;: &quot;A String&quot;, # Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in &#x27;columns&#x27; and specifying a type for it.
        },
      ],
      &quot;ignoreUnspecifiedColumnFamilies&quot;: True or False, # Optional. If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
      &quot;outputColumnFamiliesAsJson&quot;: True or False, # Optional. If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
      &quot;readRowkeyAsString&quot;: True or False, # Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
    },
    &quot;compression&quot;: &quot;A String&quot;, # Optional. The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats. An empty string is an invalid value.
    &quot;connectionId&quot;: &quot;A String&quot;, # Optional. The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection_id can have the form `{project_id}.{location_id};{connection_id}` or `projects/{project_id}/locations/{location_id}/connections/{connection_id}`.
    &quot;csvOptions&quot;: { # Information related to a CSV data source. # Optional. Additional properties to set if sourceFormat is set to CSV.
      &quot;allowJaggedRows&quot;: True or False, # Optional. Indicates if BigQuery should accept rows that are missing trailing optional columns. If true, BigQuery treats missing trailing columns as null values. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false.
      &quot;allowQuotedNewlines&quot;: True or False, # Optional. Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.
      &quot;fieldDelimiter&quot;: &quot;A String&quot;, # Optional. The separator character for fields in a CSV file. The separator is interpreted as a single byte. For files encoded in ISO-8859-1, any single character can be used as a separator. For files encoded in UTF-8, characters represented in decimal range 1-127 (U+0001-U+007F) can be used without any modification. UTF-8 characters encoded with multiple bytes (i.e. U+0080 and above) will have only the first byte used for separating fields. The remaining bytes will be treated as a part of the field. BigQuery also supports the escape sequence &quot;\t&quot; (U+0009) to specify a tab separator. The default value is comma (&quot;,&quot;, U+002C).
      &quot;nullMarker&quot;: &quot;A String&quot;, # Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify &quot;\N&quot;, BigQuery interprets &quot;\N&quot; as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.
      &quot;nullMarkers&quot;: [ # Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can&#x27;t be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.
        &quot;A String&quot;,
      ],
      &quot;preserveAsciiControlCharacters&quot;: True or False, # Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from &#x27;\x00&#x27; to &#x27;\x1F&#x27;) are preserved.
      &quot;quote&quot;: &quot;&quot;&quot;, # Optional. The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. The default value is a double-quote (&quot;). If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true. To include the specific quote character within a quoted value, precede it with an additional matching quote character. For example, if you want to escape the default character &#x27; &quot; &#x27;, use &#x27; &quot;&quot; &#x27;.
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
      &quot;sourceColumnMatch&quot;: &quot;A String&quot;, # Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.
    },
    &quot;dateFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATE values. Supports C-style and SQL-style values.
    &quot;datetimeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse DATETIME values. Supports C-style and SQL-style values.
    &quot;decimalTargetTypes&quot;: [ # Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;]. If (precision,scale) is: * (38,9) -&gt; NUMERIC; * (39,9) -&gt; BIGNUMERIC (NUMERIC cannot hold 30 integer digits); * (38,10) -&gt; BIGNUMERIC (NUMERIC cannot hold 10 fractional digits); * (76,38) -&gt; BIGNUMERIC; * (77,38) -&gt; BIGNUMERIC (error if value exceeds supported range). This field cannot contain duplicate types. The order of the types in this field is ignored. For example, [&quot;BIGNUMERIC&quot;, &quot;NUMERIC&quot;] is the same as [&quot;NUMERIC&quot;, &quot;BIGNUMERIC&quot;] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to [&quot;NUMERIC&quot;, &quot;STRING&quot;] for ORC and [&quot;NUMERIC&quot;] for the other file formats.
      &quot;A String&quot;,
    ],
    &quot;fileSetSpecType&quot;: &quot;A String&quot;, # Optional. Specifies how source URIs are interpreted for constructing the file set to load. By default source URIs are expanded against the underlying storage. Other options include specifying manifest files. Only applicable to object storage systems.
    &quot;googleSheetsOptions&quot;: { # Options specific to Google Sheets data sources. # Optional. Additional options if sourceFormat is set to GOOGLE_SHEETS.
      &quot;range&quot;: &quot;A String&quot;, # Optional. Range of a sheet to query from. Only used when non-empty. Typical format: sheet_name!top_left_cell_id:bottom_right_cell_id For example: sheet1!A1:B20
      &quot;skipLeadingRows&quot;: &quot;A String&quot;, # Optional. The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N &gt; 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
    },
    &quot;hivePartitioningOptions&quot;: { # Options for configuring hive partitioning detect. # Optional. When set, configures hive partitioning support. Not all storage formats support hive partitioning -- requesting hive partitioning on an unsupported format will lead to an error, as will providing an invalid specification.
      &quot;fields&quot;: [ # Output only. For permanent external tables, this field is populated with the hive partition keys in the order they were inferred. The types of the partition keys can be deduced by checking the table schema (which will include the partition keys). Not every API will populate this field in the output. For example, Tables.Get will populate it, but Tables.List will not contain this field.
        &quot;A String&quot;,
      ],
      &quot;mode&quot;: &quot;A String&quot;, # Optional. When set, what mode of hive partitioning to use when reading data. The following modes are supported: * AUTO: automatically infer partition key name(s) and type(s). * STRINGS: automatically infer partition key name(s). All types are strings. * CUSTOM: partition key schema is encoded in the source URI prefix. Not all storage formats support hive partitioning. Requesting hive partitioning on an unsupported format will lead to an error. Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
      &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Note that this field should only be true when creating a permanent external table or querying a temporary external table. Hive-partitioned loads with require_partition_filter explicitly set to true will fail.
      &quot;sourceUriPrefix&quot;: &quot;A String&quot;, # Optional. When hive partition detection is requested, a common prefix for all source uris must be required. The prefix must end immediately before the partition key encoding begins. For example, consider files following this data layout: gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro When hive partitioning is requested with either AUTO or STRINGS detection, the common prefix can be either of gs://bucket/path_to_table or gs://bucket/path_to_table/. CUSTOM detection requires encoding the partitioning schema immediately after the common prefix. For CUSTOM, any of * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:STRING}/{country:STRING}/{id:INTEGER} * gs://bucket/path_to_table/{dt:DATE}/{country:STRING}/{id:STRING} would all be valid source URI prefixes.
    },
    &quot;ignoreUnknownValues&quot;: True or False, # Optional. Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don&#x27;t match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored. ORC: This setting is ignored. Parquet: This setting is ignored.
    &quot;jsonExtension&quot;: &quot;A String&quot;, # Optional. Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).
    &quot;jsonOptions&quot;: { # Json Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to JSON.
      &quot;encoding&quot;: &quot;A String&quot;, # Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
    },
    &quot;maxBadRecords&quot;: 42, # Optional. The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups, Avro, ORC and Parquet formats.
    &quot;metadataCacheMode&quot;: &quot;A String&quot;, # Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source.
    &quot;objectMetadata&quot;: &quot;A String&quot;, # Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type.
    &quot;parquetOptions&quot;: { # Parquet Options for load and make external tables. # Optional. Additional properties to set if sourceFormat is set to PARQUET.
      &quot;enableListInference&quot;: True or False, # Optional. Indicates whether to use schema inference specifically for Parquet LIST logical type.
      &quot;enumAsString&quot;: True or False, # Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
      &quot;mapTargetType&quot;: &quot;A String&quot;, # Optional. Indicates how to represent a Parquet map if present.
    },
    &quot;referenceFileSchemaUri&quot;: &quot;A String&quot;, # Optional. When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
    &quot;schema&quot;: { # Schema of a table # Optional. The schema for the data. Schema is required for CSV and JSON formats if autodetect is not on. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, ORC and Parquet formats.
      &quot;fields&quot;: [ # Describes the fields in a table.
        { # A field in TableSchema
          &quot;categories&quot;: { # Deprecated.
            &quot;names&quot;: [ # Deprecated.
              &quot;A String&quot;,
            ],
          },
          &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
          &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
            { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
              &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
            },
          ],
          &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
          &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
          &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
            # Object with schema name: TableFieldSchema
          ],
          &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
          &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
          &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
          &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
          &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
            &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
              &quot;A String&quot;,
            ],
          },
          &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
          &quot;rangeElementType&quot;: { # Represents the type of a field element.
            &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
          },
          &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
          &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
          &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
        },
      ],
      &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
        &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
      },
    },
    &quot;sourceFormat&quot;: &quot;A String&quot;, # [Required] The data format. For CSV files, specify &quot;CSV&quot;. For Google sheets, specify &quot;GOOGLE_SHEETS&quot;. For newline-delimited JSON, specify &quot;NEWLINE_DELIMITED_JSON&quot;. For Avro files, specify &quot;AVRO&quot;. For Google Cloud Datastore backups, specify &quot;DATASTORE_BACKUP&quot;. For Apache Iceberg tables, specify &quot;ICEBERG&quot;. For ORC files, specify &quot;ORC&quot;. For Parquet files, specify &quot;PARQUET&quot;. [Beta] For Google Cloud Bigtable, specify &quot;BIGTABLE&quot;.
    &quot;sourceUris&quot;: [ # [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one &#x27;*&#x27; wildcard character and it must come after the &#x27;bucket&#x27; name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly one URI can be specified. Also, the &#x27;*&#x27; wildcard character is not allowed.
      &quot;A String&quot;,
    ],
    &quot;timeFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIME values. Supports C-style and SQL-style values.
    &quot;timeZone&quot;: &quot;A String&quot;, # Optional. Time zone used when parsing timestamp values that do not have specific time zone information (e.g. 2024-04-20 12:34:56). The expected format is a IANA timezone string (e.g. America/Los_Angeles).
    &quot;timestampFormat&quot;: &quot;A String&quot;, # Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values.
  },
  &quot;friendlyName&quot;: &quot;A String&quot;, # Optional. A descriptive name for this table.
  &quot;id&quot;: &quot;A String&quot;, # Output only. An opaque ID uniquely identifying the table.
  &quot;kind&quot;: &quot;bigquery#table&quot;, # The type of resource ID.
  &quot;labels&quot;: { # The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;lastModifiedTime&quot;: &quot;A String&quot;, # Output only. The time when this table was last modified, in milliseconds since the epoch.
  &quot;location&quot;: &quot;A String&quot;, # Output only. The geographic location where the table resides. This value is inherited from the dataset.
  &quot;managedTableType&quot;: &quot;A String&quot;, # Optional. If set, overrides the default managed table type configured in the dataset.
  &quot;materializedView&quot;: { # Definition and configuration of a materialized view. # Optional. The materialized view definition.
    &quot;allowNonIncrementalDefinition&quot;: True or False, # Optional. This option declares the intention to construct a materialized view that isn&#x27;t refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can&#x27;t be changed after the materialized view is created.
    &quot;enableRefresh&quot;: True or False, # Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is &quot;true&quot;.
    &quot;lastRefreshTime&quot;: &quot;A String&quot;, # Output only. The time when this materialized view was last refreshed, in milliseconds since the epoch.
    &quot;maxStaleness&quot;: &quot;A String&quot;, # [Optional] Max staleness of data that could be returned when materizlized view is queried (formatted as Google SQL Interval type).
    &quot;query&quot;: &quot;A String&quot;, # Required. A query whose results are persisted.
    &quot;refreshIntervalMs&quot;: &quot;A String&quot;, # Optional. The maximum frequency at which this materialized view will be refreshed. The default value is &quot;1800000&quot; (30 minutes).
  },
  &quot;materializedViewStatus&quot;: { # Status of a materialized view. The last refresh timestamp status is omitted here, but is present in the MaterializedViewDefinition message. # Output only. The materialized view status.
    &quot;lastRefreshStatus&quot;: { # Error details. # Output only. Error result of the last automatic refresh. If present, indicates that the last automatic refresh was unsuccessful.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;refreshWatermark&quot;: &quot;A String&quot;, # Output only. Refresh watermark of materialized view. The base tables&#x27; data were collected into the materialized view cache until this time.
  },
  &quot;maxStaleness&quot;: &quot;A String&quot;, # Optional. The maximum staleness of data that could be returned when the table (or stale MV) is queried. Staleness encoded as a string encoding of sql IntervalValue type.
  &quot;model&quot;: { # Deprecated.
    &quot;modelOptions&quot;: { # Deprecated.
      &quot;labels&quot;: [
        &quot;A String&quot;,
      ],
      &quot;lossType&quot;: &quot;A String&quot;,
      &quot;modelType&quot;: &quot;A String&quot;,
    },
    &quot;trainingRuns&quot;: [ # Deprecated.
      {
        &quot;iterationResults&quot;: [ # Deprecated.
          {
            &quot;durationMs&quot;: &quot;A String&quot;, # Deprecated.
            &quot;evalLoss&quot;: 3.14, # Deprecated.
            &quot;index&quot;: 42, # Deprecated.
            &quot;learnRate&quot;: 3.14, # Deprecated.
            &quot;trainingLoss&quot;: 3.14, # Deprecated.
          },
        ],
        &quot;startTime&quot;: &quot;A String&quot;, # Deprecated.
        &quot;state&quot;: &quot;A String&quot;, # Deprecated.
        &quot;trainingOptions&quot;: { # Deprecated.
          &quot;earlyStop&quot;: True or False,
          &quot;l1Reg&quot;: 3.14,
          &quot;l2Reg&quot;: 3.14,
          &quot;learnRate&quot;: 3.14,
          &quot;learnRateStrategy&quot;: &quot;A String&quot;,
          &quot;lineSearchInitLearnRate&quot;: 3.14,
          &quot;maxIteration&quot;: &quot;A String&quot;,
          &quot;minRelProgress&quot;: 3.14,
          &quot;warmStart&quot;: True or False,
        },
      },
    ],
  },
  &quot;numActiveLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are less than 90 days old.
  &quot;numActivePhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes less than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numBytes&quot;: &quot;A String&quot;, # Output only. The size of this table in logical bytes, excluding any data in the streaming buffer.
  &quot;numCurrentPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by current live data storage. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numLongTermBytes&quot;: &quot;A String&quot;, # Output only. The number of logical bytes in the table that are considered &quot;long-term storage&quot;.
  &quot;numLongTermLogicalBytes&quot;: &quot;A String&quot;, # Output only. Number of logical bytes that are more than 90 days old.
  &quot;numLongTermPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes more than 90 days old. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPartitions&quot;: &quot;A String&quot;, # Output only. The number of partitions present in the table or materialized view. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This includes storage used for time travel.
  &quot;numRows&quot;: &quot;A String&quot;, # Output only. The number of rows of data in this table, excluding any data in the streaming buffer.
  &quot;numTimeTravelPhysicalBytes&quot;: &quot;A String&quot;, # Output only. Number of physical bytes used by time travel storage (deleted or changed data). This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;numTotalLogicalBytes&quot;: &quot;A String&quot;, # Output only. Total number of logical bytes in the table or materialized view.
  &quot;numTotalPhysicalBytes&quot;: &quot;A String&quot;, # Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes.
  &quot;partitionDefinition&quot;: { # The partitioning information, which includes managed table, external table and metastore partitioned table partition information. # Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field.
    &quot;partitionedColumn&quot;: [ # Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be [&#x27;city&#x27;, &#x27;state&#x27;] in that order.
      { # The partitioning column information.
        &quot;field&quot;: &quot;A String&quot;, # Required. The name of the partition column.
      },
    ],
  },
  &quot;rangePartitioning&quot;: { # If specified, configures range partitioning for this table.
    &quot;field&quot;: &quot;A String&quot;, # Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
    &quot;range&quot;: { # [Experimental] Defines the ranges for range partitioning.
      &quot;end&quot;: &quot;A String&quot;, # [Experimental] The end of range partitioning, exclusive.
      &quot;interval&quot;: &quot;A String&quot;, # [Experimental] The width of each interval.
      &quot;start&quot;: &quot;A String&quot;, # [Experimental] The start of range partitioning, inclusive.
    },
  },
  &quot;replicas&quot;: [ # Optional. Output only. Table references of all replicas currently active on the table.
    {
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  ],
  &quot;requirePartitionFilter&quot;: false, # Optional. If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified.
  &quot;resourceTags&quot;: { # [Optional] The tags associated with this table. Tag keys are globally unique. See additional information on [tags](https://cloud.google.com/iam/docs/tags-access-control#definitions). An object containing a list of &quot;key&quot;: value pairs. The key is the namespaced friendly name of the tag key, e.g. &quot;12345/environment&quot; where 12345 is parent id. The value is the friendly short name of the tag value, e.g. &quot;production&quot;.
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;restrictions&quot;: { # Optional. Output only. Restriction config for table. If set, restrict certain accesses on the table based on the config. See [Data egress](https://cloud.google.com/bigquery/docs/analytics-hub-introduction#data_egress) for more details.
    &quot;type&quot;: &quot;A String&quot;, # Output only. Specifies the type of dataset/table restriction.
  },
  &quot;schema&quot;: { # Schema of a table # Optional. Describes the schema of this table.
    &quot;fields&quot;: [ # Describes the fields in a table.
      { # A field in TableSchema
        &quot;categories&quot;: { # Deprecated.
          &quot;names&quot;: [ # Deprecated.
            &quot;A String&quot;,
          ],
        },
        &quot;collation&quot;: &quot;A String&quot;, # Optional. Field collation can be set only when the type of field is STRING. The following values are supported: * &#x27;und:ci&#x27;: undetermined locale, case insensitive. * &#x27;&#x27;: empty string. Default to case-sensitive behavior.
        &quot;dataPolicies&quot;: [ # Optional. Data policies attached to this field, used for field-level access control.
          { # Data policy option. For more information, see [Mask data by applying data policies to a column](https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column/).
            &quot;name&quot;: &quot;A String&quot;, # Data policy resource name in the form of projects/project_id/locations/location_id/dataPolicies/data_policy_id.
          },
        ],
        &quot;defaultValueExpression&quot;: &quot;A String&quot;, # Optional. A SQL expression to specify the [default value] (https://cloud.google.com/bigquery/docs/default-values) for this field.
        &quot;description&quot;: &quot;A String&quot;, # Optional. The field description. The maximum length is 1,024 characters.
        &quot;fields&quot;: [ # Optional. Describes the nested schema fields if the type property is set to RECORD.
          # Object with schema name: TableFieldSchema
        ],
        &quot;foreignTypeDefinition&quot;: &quot;A String&quot;, # Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required.
        &quot;maxLength&quot;: &quot;A String&quot;, # Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = &quot;STRING&quot;, then max_length represents the maximum UTF-8 length of strings in this field. If type = &quot;BYTES&quot;, then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ &quot;STRING&quot; and ≠ &quot;BYTES&quot;.
        &quot;mode&quot;: &quot;A String&quot;, # Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
        &quot;name&quot;: &quot;A String&quot;, # Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 300 characters.
        &quot;policyTags&quot;: { # Optional. The policy tags attached to this field, used for field-level access control. If not set, defaults to empty policy_tags.
          &quot;names&quot;: [ # A list of policy tag resource names. For example, &quot;projects/1/locations/eu/taxonomies/2/policyTags/3&quot;. At most 1 policy tag is currently allowed.
            &quot;A String&quot;,
          ],
        },
        &quot;precision&quot;: &quot;A String&quot;, # Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type ≠ &quot;NUMERIC&quot; and ≠ &quot;BIGNUMERIC&quot;. If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when: * Precision (P) and scale (S) are specified: [-10P-S + 10-S, 10P-S - 10-S] * Precision (P) is specified but not scale (and thus scale is interpreted to be equal to zero): [-10P + 1, 10P - 1]. Acceptable values for precision and scale if both are specified: * If type = &quot;NUMERIC&quot;: 1 ≤ precision - scale ≤ 29 and 0 ≤ scale ≤ 9. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision - scale ≤ 38 and 0 ≤ scale ≤ 38. Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero): * If type = &quot;NUMERIC&quot;: 1 ≤ precision ≤ 29. * If type = &quot;BIGNUMERIC&quot;: 1 ≤ precision ≤ 38. If scale is specified but not precision, then it is invalid.
        &quot;rangeElementType&quot;: { # Represents the type of a field element.
          &quot;type&quot;: &quot;A String&quot;, # Required. The type of a field element. For more information, see TableFieldSchema.type.
        },
        &quot;roundingMode&quot;: &quot;A String&quot;, # Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type.
        &quot;scale&quot;: &quot;A String&quot;, # Optional. See documentation for precision.
        &quot;type&quot;: &quot;A String&quot;, # Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema.
      },
    ],
    &quot;foreignTypeInfo&quot;: { # Metadata about the foreign data type definition such as the system in which the type is defined. # Optional. Specifies metadata of the foreign data type definition in field schema (TableFieldSchema.foreign_type_definition).
      &quot;typeSystem&quot;: &quot;A String&quot;, # Required. Specifies the system which defines the foreign data type.
    },
  },
  &quot;selfLink&quot;: &quot;A String&quot;, # Output only. A URL that can be used to access this resource again.
  &quot;snapshotDefinition&quot;: { # Information about base table and snapshot time of the snapshot. # Output only. Contains information about the snapshot. This value is set via snapshot creation.
    &quot;baseTableReference&quot;: { # Required. Reference describing the ID of the table that was snapshot.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
    &quot;snapshotTime&quot;: &quot;A String&quot;, # Required. The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.
  },
  &quot;streamingBuffer&quot;: { # Output only. Contains information regarding this table&#x27;s streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.
    &quot;estimatedBytes&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of bytes currently in the streaming buffer.
    &quot;estimatedRows&quot;: &quot;A String&quot;, # Output only. A lower-bound estimate of the number of rows currently in the streaming buffer.
    &quot;oldestEntryTime&quot;: &quot;A String&quot;, # Output only. Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
  },
  &quot;tableConstraints&quot;: { # The TableConstraints defines the primary key and foreign key. # Optional. Tables Primary Key and Foreign Key information
    &quot;foreignKeys&quot;: [ # Optional. Present only if the table has a foreign key. The foreign key is not enforced.
      { # Represents a foreign key constraint on a table&#x27;s columns.
        &quot;columnReferences&quot;: [ # Required. The columns that compose the foreign key.
          { # The pair of the foreign key column and primary key column.
            &quot;referencedColumn&quot;: &quot;A String&quot;, # Required. The column in the primary key that are referenced by the referencing_column.
            &quot;referencingColumn&quot;: &quot;A String&quot;, # Required. The column that composes the foreign key.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # Optional. Set only if the foreign key constraint is named.
        &quot;referencedTable&quot;: {
          &quot;datasetId&quot;: &quot;A String&quot;,
          &quot;projectId&quot;: &quot;A String&quot;,
          &quot;tableId&quot;: &quot;A String&quot;,
        },
      },
    ],
    &quot;primaryKey&quot;: { # Represents the primary key constraint on a table&#x27;s columns.
      &quot;columns&quot;: [ # Required. The columns that are composed of the primary key constraint.
        &quot;A String&quot;,
      ],
    },
  },
  &quot;tableReference&quot;: { # Required. Reference describing the ID of this table.
    &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
    &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
    &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
  },
  &quot;tableReplicationInfo&quot;: { # Replication info of a table created using `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv` # Optional. Table replication info for table created `AS REPLICA` DDL like: `CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`
    &quot;replicatedSourceLastRefreshTime&quot;: &quot;A String&quot;, # Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.
    &quot;replicationError&quot;: { # Error details. # Optional. Output only. Replication error that will permanently stopped table replication.
      &quot;debugInfo&quot;: &quot;A String&quot;, # Debugging information. This property is internal to Google and should not be used.
      &quot;location&quot;: &quot;A String&quot;, # Specifies where the error occurred, if present.
      &quot;message&quot;: &quot;A String&quot;, # A human-readable description of the error.
      &quot;reason&quot;: &quot;A String&quot;, # A short error code that summarizes the error.
    },
    &quot;replicationIntervalMs&quot;: &quot;A String&quot;, # Optional. Specifies the interval at which the source table is polled for updates. It&#x27;s Optional. If not specified, default replication interval would be applied.
    &quot;replicationStatus&quot;: &quot;A String&quot;, # Optional. Output only. Replication status of configured replication.
    &quot;sourceTable&quot;: { # Required. Source table reference that is replicated.
      &quot;datasetId&quot;: &quot;A String&quot;, # Required. The ID of the dataset containing this table.
      &quot;projectId&quot;: &quot;A String&quot;, # Required. The ID of the project containing this table.
      &quot;tableId&quot;: &quot;A String&quot;, # Required. The ID of the table. The ID can contain Unicode characters in category L (letter), M (mark), N (number), Pc (connector, including underscore), Pd (dash), and Zs (space). For more information, see [General Category](https://wikipedia.org/wiki/Unicode_character_property#General_Category). The maximum length is 1,024 characters. Certain operations allow suffixing of the table ID with a partition decorator, such as `sample_table$20190123`.
    },
  },
  &quot;timePartitioning&quot;: { # If specified, configures time-based partitioning for this table.
    &quot;expirationMs&quot;: &quot;A String&quot;, # Optional. Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
    &quot;field&quot;: &quot;A String&quot;, # Optional. If not set, the table is partitioned by pseudo column &#x27;_PARTITIONTIME&#x27;; if set, the table is partitioned by this field. The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED. A wrapper is used here because an empty string is an invalid value.
    &quot;requirePartitionFilter&quot;: false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. This field is deprecated; please set the field with the same name on the table itself instead. This field needs a wrapper because we want to output the default value, false, if the user explicitly set it.
    &quot;type&quot;: &quot;A String&quot;, # Required. The supported types are DAY, HOUR, MONTH, and YEAR, which will generate one partition per day, hour, month, and year, respectively.
  },
  &quot;type&quot;: &quot;A String&quot;, # Output only. Describes the table type. The following values are supported: * `TABLE`: A normal BigQuery table. * `VIEW`: A virtual table defined by a SQL query. * `EXTERNAL`: A table that references data stored in an external storage system, such as Google Cloud Storage. * `MATERIALIZED_VIEW`: A precomputed view defined by a SQL query. * `SNAPSHOT`: An immutable BigQuery table that preserves the contents of a base table at a particular time. See additional information on [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). The default value is `TABLE`.
  &quot;view&quot;: { # Describes the definition of a logical view. # Optional. The view definition.
    &quot;foreignDefinitions&quot;: [ # Optional. Foreign view representations.
      { # A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
        &quot;dialect&quot;: &quot;A String&quot;, # Optional. Represents the dialect of the query.
        &quot;query&quot;: &quot;A String&quot;, # Required. The query that defines the view.
      },
    ],
    &quot;privacyPolicy&quot;: { # Represents privacy policy that contains the privacy requirements specified by the data owner. Currently, this is only supported on views. # Optional. Specifies the privacy policy for the view.
      &quot;aggregationThresholdPolicy&quot;: { # Represents privacy policy associated with &quot;aggregation threshold&quot; method. # Optional. Policy used for aggregation thresholds.
        &quot;privacyUnitColumns&quot;: [ # Optional. The privacy unit column(s) associated with this policy. For now, only one column per data source object (table, view) is allowed as a privacy unit column. Representing as a repeated field in metadata for extensibility to multiple columns in future. Duplicates and Repeated struct fields are not allowed. For nested fields, use dot notation (&quot;outer.inner&quot;)
          &quot;A String&quot;,
        ],
        &quot;threshold&quot;: &quot;A String&quot;, # Optional. The threshold for the &quot;aggregation threshold&quot; policy.
      },
      &quot;differentialPrivacyPolicy&quot;: { # Represents privacy policy associated with &quot;differential privacy&quot; method. # Optional. Policy used for differential privacy.
        &quot;deltaBudget&quot;: 3.14, # Optional. The total delta budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of delta that is pre-defined by the contributor through the privacy policy delta_per_query field. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;deltaBudgetRemaining&quot;: 3.14, # Output only. The delta budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;deltaPerQuery&quot;: 3.14, # Optional. The delta value that is used per query. Delta represents the probability that any row will fail to be epsilon differentially private. Indicates the risk associated with exposing aggregate rows in the result of a query.
        &quot;epsilonBudget&quot;: 3.14, # Optional. The total epsilon budget for all queries against the privacy-protected view. Each subscriber query against this view charges the amount of epsilon they request in their query. If there is sufficient budget, then the subscriber query attempts to complete. It might still fail due to other reasons, in which case the charge is refunded. If there is insufficient budget the query is rejected. There might be multiple charge attempts if a single query references multiple views. In this case there must be sufficient budget for all charges or the query is rejected and charges are refunded in best effort. The budget does not have a refresh policy and can only be updated via ALTER VIEW or circumvented by creating a new view that can be queried with a fresh budget.
        &quot;epsilonBudgetRemaining&quot;: 3.14, # Output only. The epsilon budget remaining. If budget is exhausted, no more queries are allowed. Note that the budget for queries that are in progress is deducted before the query executes. If the query fails or is cancelled then the budget is refunded. In this case the amount of budget remaining can increase.
        &quot;maxEpsilonPerQuery&quot;: 3.14, # Optional. The maximum epsilon value that a query can consume. If the subscriber specifies epsilon as a parameter in a SELECT query, it must be less than or equal to this value. The epsilon parameter controls the amount of noise that is added to the groups — a higher epsilon means less noise.
        &quot;maxGroupsContributed&quot;: &quot;A String&quot;, # Optional. The maximum groups contributed value that is used per query. Represents the maximum number of groups to which each protected entity can contribute. Changing this value does not improve or worsen privacy. The best value for accuracy and utility depends on the query and data.
        &quot;privacyUnitColumn&quot;: &quot;A String&quot;, # Optional. The privacy unit column associated with this policy. Differential privacy policies can only have one privacy unit column per data source object (table, view).
      },
      &quot;joinRestrictionPolicy&quot;: { # Represents privacy policy associated with &quot;join restrictions&quot;. Join restriction gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view. # Optional. Join restriction policy is outside of the one of policies, since this policy can be set along with other policies. This policy gives data providers the ability to enforce joins on the &#x27;join_allowed_columns&#x27; when data is queried from a privacy protected view.
        &quot;joinAllowedColumns&quot;: [ # Optional. The only columns that joins are allowed on. This field is must be specified for join_conditions JOIN_ANY and JOIN_ALL and it cannot be set for JOIN_BLOCKED.
          &quot;A String&quot;,
        ],
        &quot;joinCondition&quot;: &quot;A String&quot;, # Optional. Specifies if a join is required or not on queries for the view. Default is JOIN_CONDITION_UNSPECIFIED.
      },
    },
    &quot;query&quot;: &quot;A String&quot;, # Required. A query that BigQuery executes when the view is referenced.
    &quot;useExplicitColumnNames&quot;: True or False, # True if the column names are explicitly specified. For example by using the &#x27;CREATE VIEW v(c1, c2) AS ...&#x27; syntax. Can only be set for GoogleSQL views.
    &quot;useLegacySql&quot;: True or False, # Specifies whether to use BigQuery&#x27;s legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery&#x27;s GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value. A wrapper is used here because the default value is True.
    &quot;userDefinedFunctionResources&quot;: [ # Describes user-defined function resources used in the query.
      { #  This is used for defining User Defined Function (UDF) resources only when using legacy SQL. Users of GoogleSQL should leverage either DDL (e.g. CREATE [TEMPORARY] FUNCTION ... ) or the Routines API to define UDF resources. For additional information on migrating, see: https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions
        &quot;inlineCode&quot;: &quot;A String&quot;, # [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
        &quot;resourceUri&quot;: &quot;A String&quot;, # [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
      },
    ],
  },
}</pre>
</div>

</body></html>