Google.Cloud.Bigtable.V2.xml
230 KB
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
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
<?xml version="1.0"?>
<doc>
<assembly>
<name>Google.Cloud.Bigtable.V2</name>
</assembly>
<members>
<member name="T:Google.Cloud.Bigtable.V2.BigtableReflection">
<summary>Holder for reflection information generated from google/bigtable/v2/bigtable.proto</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableReflection.Descriptor">
<summary>File descriptor for google/bigtable/v2/bigtable.proto</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadRowsRequest">
<summary>
Request message for Bigtable.ReadRows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsRequest.TableNameFieldNumber">
<summary>Field number for the "table_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.TableName">
<summary>
The unique name of the table from which to read.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsRequest.RowsFieldNumber">
<summary>Field number for the "rows" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.Rows">
<summary>
The row keys and/or ranges to read. If not specified, reads from all rows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsRequest.FilterFieldNumber">
<summary>Field number for the "filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.Filter">
<summary>
The filter to apply to the contents of the specified row(s). If unset,
reads the entirety of each row.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsRequest.RowsLimitFieldNumber">
<summary>Field number for the "rows_limit" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.RowsLimit">
<summary>
The read will terminate after committing to N rows' worth of results. The
default (zero) is to return all results.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.TableNameAsTableName">
<summary>
<see cref="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.TableName"/>-typed view over the <see cref="P:Google.Cloud.Bigtable.V2.ReadRowsRequest.TableName"/> resource name property.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadRowsResponse">
<summary>
Response message for Bigtable.ReadRows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.ChunksFieldNumber">
<summary>Field number for the "chunks" field.</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.LastScannedRowKeyFieldNumber">
<summary>Field number for the "last_scanned_row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.LastScannedRowKey">
<summary>
Optionally the server might return the row key of the last row it
has scanned. The client can use this to construct a more
efficient retry request if needed: any row keys or portions of
ranges less than this row key can be dropped from the request.
This is primarily useful for cases where the server has read a
lot of data that was filtered out since the last committed row
key, allowing the client to skip that work on a retry.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types">
<summary>Container for nested types declared in the ReadRowsResponse message type.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk">
<summary>
Specifies a piece of a row's contents returned as part of the read
response stream.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.RowKeyFieldNumber">
<summary>Field number for the "row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.RowKey">
<summary>
The row key for this chunk of data. If the row key is empty,
this CellChunk is a continuation of the same row as the previous
CellChunk in the response stream, even if that CellChunk was in a
previous ReadRowsResponse message.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.FamilyNameFieldNumber">
<summary>Field number for the "family_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.FamilyName">
<summary>
The column family name for this chunk of data. If this message
is not present this CellChunk is a continuation of the same column
family as the previous CellChunk. The empty string can occur as a
column family name in a response so clients must check
explicitly for the presence of this message, not just for
`family_name.value` being non-empty.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.QualifierFieldNumber">
<summary>Field number for the "qualifier" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.Qualifier">
<summary>
The column qualifier for this chunk of data. If this message
is not present, this CellChunk is a continuation of the same column
as the previous CellChunk. Column qualifiers may be empty so
clients must check for the presence of this message, not just
for `qualifier.value` being non-empty.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.TimestampMicrosFieldNumber">
<summary>Field number for the "timestamp_micros" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.TimestampMicros">
<summary>
The cell's stored timestamp, which also uniquely identifies it
within its column. Values are always expressed in
microseconds, but individual tables may set a coarser
granularity to further restrict the allowed values. For
example, a table which specifies millisecond granularity will
only allow values of `timestamp_micros` which are multiples of
1000. Timestamps are only set in the first CellChunk per cell
(for cells split into multiple chunks).
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.LabelsFieldNumber">
<summary>Field number for the "labels" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.Labels">
<summary>
Labels applied to the cell by a
[RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
on the first CellChunk per cell.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.ValueFieldNumber">
<summary>Field number for the "value" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.Value">
<summary>
The value stored in the cell. Cell values can be split across
multiple CellChunks. In that case only the value field will be
set in CellChunks after the first: the timestamp and labels
will only be present in the first CellChunk, even if the first
CellChunk came in a previous ReadRowsResponse.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.ValueSizeFieldNumber">
<summary>Field number for the "value_size" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.ValueSize">
<summary>
If this CellChunk is part of a chunked cell value and this is
not the final chunk of that cell, value_size will be set to the
total length of the cell value. The client can use this size
to pre-allocate memory to hold the full cell value.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.ResetRowFieldNumber">
<summary>Field number for the "reset_row" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.ResetRow">
<summary>
Indicates that the client should drop all previous chunks for
`row_key`, as it will be re-read from the beginning.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.CommitRowFieldNumber">
<summary>Field number for the "commit_row" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.CommitRow">
<summary>
Indicates that the client can safely process all previous chunks for
`row_key`, as its data has been fully read.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadRowsResponse.Types.CellChunk.RowStatusOneofCase">
<summary>Enum of possible cases for the "row_status" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.SampleRowKeysRequest">
<summary>
Request message for Bigtable.SampleRowKeys.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.SampleRowKeysRequest.TableNameFieldNumber">
<summary>Field number for the "table_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.SampleRowKeysRequest.TableName">
<summary>
The unique name of the table from which to sample row keys.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.SampleRowKeysRequest.TableNameAsTableName">
<summary>
<see cref="P:Google.Cloud.Bigtable.V2.SampleRowKeysRequest.TableName"/>-typed view over the <see cref="P:Google.Cloud.Bigtable.V2.SampleRowKeysRequest.TableName"/> resource name property.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.SampleRowKeysResponse">
<summary>
Response message for Bigtable.SampleRowKeys.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.SampleRowKeysResponse.RowKeyFieldNumber">
<summary>Field number for the "row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.SampleRowKeysResponse.RowKey">
<summary>
Sorted streamed sequence of sample row keys in the table. The table might
have contents before the first row key in the list and after the last one,
but a key containing the empty string indicates "end of table" and will be
the last response given, if present.
Note that row keys in this list may not have ever been written to or read
from, and users should therefore not make any assumptions about the row key
structure that are specific to their use case.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.SampleRowKeysResponse.OffsetBytesFieldNumber">
<summary>Field number for the "offset_bytes" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.SampleRowKeysResponse.OffsetBytes">
<summary>
Approximate total storage space used by all rows in the table which precede
`row_key`. Buffering the contents of all rows between two subsequent
samples would require space roughly equal to the difference in their
`offset_bytes` fields.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.MutateRowRequest">
<summary>
Request message for Bigtable.MutateRow.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowRequest.TableNameFieldNumber">
<summary>Field number for the "table_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowRequest.TableName">
<summary>
The unique name of the table to which the mutation should be applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowRequest.RowKeyFieldNumber">
<summary>Field number for the "row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowRequest.RowKey">
<summary>
The key of the row to which the mutation should be applied.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowRequest.MutationsFieldNumber">
<summary>Field number for the "mutations" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowRequest.Mutations">
<summary>
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowRequest.TableNameAsTableName">
<summary>
<see cref="P:Google.Cloud.Bigtable.V2.MutateRowRequest.TableName"/>-typed view over the <see cref="P:Google.Cloud.Bigtable.V2.MutateRowRequest.TableName"/> resource name property.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.MutateRowResponse">
<summary>
Response message for Bigtable.MutateRow.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.MutateRowsRequest">
<summary>
Request message for BigtableService.MutateRows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsRequest.TableNameFieldNumber">
<summary>Field number for the "table_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.TableName">
<summary>
The unique name of the table to which the mutations should be applied.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsRequest.EntriesFieldNumber">
<summary>Field number for the "entries" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.Entries">
<summary>
The row keys and corresponding mutations to be applied in bulk.
Each entry is applied as an atomic mutation, but the entries may be
applied in arbitrary order (even between entries for the same row).
At least one entry must be specified, and in total the entries can
contain at most 100000 mutations.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.MutateRowsRequest.Types">
<summary>Container for nested types declared in the MutateRowsRequest message type.</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsRequest.Types.Entry.RowKeyFieldNumber">
<summary>Field number for the "row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.Types.Entry.RowKey">
<summary>
The key of the row to which the `mutations` should be applied.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsRequest.Types.Entry.MutationsFieldNumber">
<summary>Field number for the "mutations" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.Types.Entry.Mutations">
<summary>
Changes to be atomically applied to the specified row. Mutations are
applied in order, meaning that earlier mutations can be masked by
later ones.
You must specify at least one mutation.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.TableNameAsTableName">
<summary>
<see cref="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.TableName"/>-typed view over the <see cref="P:Google.Cloud.Bigtable.V2.MutateRowsRequest.TableName"/> resource name property.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.MutateRowsResponse">
<summary>
Response message for BigtableService.MutateRows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsResponse.EntriesFieldNumber">
<summary>Field number for the "entries" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsResponse.Entries">
<summary>
One or more results for Entries from the batch request.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.MutateRowsResponse.Types">
<summary>Container for nested types declared in the MutateRowsResponse message type.</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsResponse.Types.Entry.IndexFieldNumber">
<summary>Field number for the "index" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsResponse.Types.Entry.Index">
<summary>
The index into the original request's `entries` list of the Entry
for which a result is being reported.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.MutateRowsResponse.Types.Entry.StatusFieldNumber">
<summary>Field number for the "status" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.MutateRowsResponse.Types.Entry.Status">
<summary>
The result of the request Entry identified by `index`.
Depending on how requests are batched during execution, it is possible
for one Entry to fail due to an error with another Entry. In the event
that this occurs, the same error will be reported for both entries.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest">
<summary>
Request message for Bigtable.CheckAndMutateRow.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TableNameFieldNumber">
<summary>Field number for the "table_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TableName">
<summary>
The unique name of the table to which the conditional mutation should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.RowKeyFieldNumber">
<summary>Field number for the "row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.RowKey">
<summary>
The key of the row to which the conditional mutation should be applied.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.PredicateFilterFieldNumber">
<summary>Field number for the "predicate_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.PredicateFilter">
<summary>
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, either `true_mutations` or
`false_mutations` will be executed. If unset, checks that the row contains
any values at all.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TrueMutationsFieldNumber">
<summary>Field number for the "true_mutations" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TrueMutations">
<summary>
Changes to be atomically applied to the specified row if `predicate_filter`
yields at least one cell when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `false_mutations` is empty, and at most
100000.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.FalseMutationsFieldNumber">
<summary>Field number for the "false_mutations" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.FalseMutations">
<summary>
Changes to be atomically applied to the specified row if `predicate_filter`
does not yield any cells when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `true_mutations` is empty, and at most
100000.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TableNameAsTableName">
<summary>
<see cref="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TableName"/>-typed view over the <see cref="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest.TableName"/> resource name property.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.CheckAndMutateRowResponse">
<summary>
Response message for Bigtable.CheckAndMutateRow.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.CheckAndMutateRowResponse.PredicateMatchedFieldNumber">
<summary>Field number for the "predicate_matched" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.CheckAndMutateRowResponse.PredicateMatched">
<summary>
Whether or not the request's `predicate_filter` yielded any results for
the specified row.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest">
<summary>
Request message for Bigtable.ReadModifyWriteRow.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.TableNameFieldNumber">
<summary>Field number for the "table_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.TableName">
<summary>
The unique name of the table to which the read/modify/write rules should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.RowKeyFieldNumber">
<summary>Field number for the "row_key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.RowKey">
<summary>
The key of the row to which the read/modify/write rules should be applied.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.RulesFieldNumber">
<summary>Field number for the "rules" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.Rules">
<summary>
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.TableNameAsTableName">
<summary>
<see cref="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.TableName"/>-typed view over the <see cref="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest.TableName"/> resource name property.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadModifyWriteRowResponse">
<summary>
Response message for Bigtable.ReadModifyWriteRow.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRowResponse.RowFieldNumber">
<summary>Field number for the "row" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRowResponse.Row">
<summary>
A Row containing the new contents of all cells modified by the request.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableByteString">
<summary>
A sequence of bytes which can be used for a row key, column qualifier, or cell value.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.#ctor(System.String)">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value from the UTF-8 encoding of a string.
</summary>
<param name="valueAsUtf8">
The value whose UTF-8 representation should be used to initialize the byte string.
May be null in which case the empty byte string is used.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.#ctor(System.Int64)">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value from the big-endian encoding of a signed 64-bit value.
</summary>
<param name="value">The 64-bit value which should be used to initialize the byte string.</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.#ctor(System.Byte[])">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value from an array of bytes.
</summary>
<param name="value">
The bytes making up the byte string. May be null in which case the empty byte string is used.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.#ctor(Google.Protobuf.ByteString)">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value from a byte string.
</summary>
<param name="value">
The byte string making up the value. May be null in which case the empty byte string is used.
</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableByteString.Length">
<summary>
Gets the number of bytes in the byte string.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableByteString.Value">
<summary>
Gets the underlying byte string.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableByteString.Item(System.Int32)">
<summary>
Returns the byte at index <paramref name="index"/>.
</summary>
<param name="index">
The index in the byte string to return. Must be greater than or equal to 0, and less than <see cref="P:Google.Cloud.Bigtable.V2.BigtableByteString.Length"/>.
</param>
<returns>The byte at index <paramref name="index"/>.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.GetHashCode">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.ToString">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.Compare(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Compares two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values lexicographically.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is less than <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.CompareTo(System.Object)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.CompareTo(Google.Cloud.Bigtable.V2.BigtableByteString)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.Equals(Google.Cloud.Bigtable.V2.BigtableByteString)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_LessThan(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is less than <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_LessThanOrEqual(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is less than or equal <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Equality(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values for equality.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is equal to <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Inequality(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values for inequality.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is not equal to <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_GreaterThanOrEqual(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is greater than or equal <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_GreaterThan(Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is greater than <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Implicit(System.String)~Google.Cloud.Bigtable.V2.BigtableByteString">
<summary>
Converts the UTF-8 encoding of a string to a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value.
</summary>
<param name="valueAsUtf8">
The value whose UTF-8 representation should be used to initialize the byte string.
May be null in which case the empty byte string is used.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Explicit(Google.Cloud.Bigtable.V2.BigtableByteString)~System.String">
<summary>
Converts the <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value to a string assuming it is UTF-8 encoded.
</summary>
<param name="value">
The BigtableByteString value to convert.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Implicit(System.Int64)~Google.Cloud.Bigtable.V2.BigtableByteString">
<summary>
Converts the big-endian encoding of a signed 64-bit value to a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value.
</summary>
<param name="value">
The 64-bit value which should be used to initialize the byte string.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Explicit(Google.Cloud.Bigtable.V2.BigtableByteString)~System.Int64">
<summary>
Converts the <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value to its a signed 64-bit value assuming it is big-endian encoded.
</summary>
<param name="value">
The BigtableByteString value to convert.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Implicit(System.Byte[])~Google.Cloud.Bigtable.V2.BigtableByteString">
<summary>
Converts a byte array to a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value.
</summary>
<param name="value">
The bytes making up the byte string. May be null in which case the empty byte string is used.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Explicit(Google.Cloud.Bigtable.V2.BigtableByteString)~System.Byte[]">
<summary>
Converts the <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value to its underlying byte array.
</summary>
<param name="value">
The BigtableByteString value to convert.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Implicit(Google.Protobuf.ByteString)~Google.Cloud.Bigtable.V2.BigtableByteString">
<summary>
Converts a byte string to a <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value.
</summary>
<param name="value">
The byte string making up the value. May be null in which case the empty byte string is used.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableByteString.op_Explicit(Google.Cloud.Bigtable.V2.BigtableByteString)~Google.Protobuf.ByteString">
<summary>
Converts the <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/> value to its underlying byte string.
</summary>
<param name="value">
The BigtableByteString value to convert.
</param>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableSettings">
<summary>
Settings for a <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/>.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableSettings.GetDefault">
<summary>
Get a new instance of the default <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/>.
</summary>
<returns>
A new instance of the default <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/>.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableSettings.#ctor">
<summary>
Constructs a new <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/> object with default settings.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.IdempotentRetryFilter">
<summary>
The filter specifying which RPC <see cref="T:Grpc.Core.StatusCode"/>s are eligible for retry
for "Idempotent" <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods.
</summary>
<remarks>
The eligible RPC <see cref="T:Grpc.Core.StatusCode"/>s for retry for "Idempotent" RPC methods are:
<list type="bullet">
<item><description><see cref="F:Grpc.Core.StatusCode.DeadlineExceeded"/></description></item>
<item><description><see cref="F:Grpc.Core.StatusCode.Unavailable"/></description></item>
</list>
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.NonIdempotentRetryFilter">
<summary>
The filter specifying which RPC <see cref="T:Grpc.Core.StatusCode"/>s are eligible for retry
for "NonIdempotent" <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods.
</summary>
<remarks>
There are no RPC <see cref="T:Grpc.Core.StatusCode"/>s eligible for retry for "NonIdempotent" RPC methods.
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableSettings.GetDefaultRetryBackoff">
<summary>
"Default" retry backoff for <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods.
</summary>
<returns>
The "Default" retry backoff for <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods.
</returns>
<remarks>
The "Default" retry backoff for <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods is defined as:
<list type="bullet">
<item><description>Initial delay: 100 milliseconds</description></item>
<item><description>Maximum delay: 60000 milliseconds</description></item>
<item><description>Delay multiplier: 1.3</description></item>
</list>
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableSettings.GetDefaultTimeoutBackoff">
<summary>
"Default" timeout backoff for <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods.
</summary>
<returns>
The "Default" timeout backoff for <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods.
</returns>
<remarks>
The "Default" timeout backoff for <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> RPC methods is defined as:
<list type="bullet">
<item><description>Initial timeout: 20000 milliseconds</description></item>
<item><description>Timeout multiplier: 1.0</description></item>
<item><description>Maximum timeout: 20000 milliseconds</description></item>
</list>
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.ReadRowsSettings">
<summary>
<see cref="T:Google.Api.Gax.Grpc.CallSettings"/> for calls to <c>BigtableClient.ReadRows</c>.
</summary>
<remarks>
Default RPC expiration is 600000 milliseconds.
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.SampleRowKeysSettings">
<summary>
<see cref="T:Google.Api.Gax.Grpc.CallSettings"/> for calls to <c>BigtableClient.SampleRowKeys</c>.
</summary>
<remarks>
Default RPC expiration is 600000 milliseconds.
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.MutateRowSettings">
<summary>
<see cref="T:Google.Api.Gax.Grpc.CallSettings"/> for synchronous and asynchronous calls to
<c>BigtableClient.MutateRow</c> and <c>BigtableClient.MutateRowAsync</c>.
</summary>
<remarks>
The default <c>BigtableClient.MutateRow</c> and
<c>BigtableClient.MutateRowAsync</c> <see cref="T:Google.Api.Gax.Grpc.RetrySettings"/> are:
<list type="bullet">
<item><description>Initial retry delay: 100 milliseconds</description></item>
<item><description>Retry delay multiplier: 1.3</description></item>
<item><description>Retry maximum delay: 60000 milliseconds</description></item>
<item><description>Initial timeout: 20000 milliseconds</description></item>
<item><description>Timeout multiplier: 1.0</description></item>
<item><description>Timeout maximum delay: 20000 milliseconds</description></item>
</list>
Retry will be attempted on the following response status codes:
<list>
<item><description>No status codes</description></item>
</list>
Default RPC expiration is 600000 milliseconds.
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.MutateRowsSettings">
<summary>
<see cref="T:Google.Api.Gax.Grpc.CallSettings"/> for calls to <c>BigtableClient.MutateRows</c>.
</summary>
<remarks>
Default RPC expiration is 600000 milliseconds.
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.CheckAndMutateRowSettings">
<summary>
<see cref="T:Google.Api.Gax.Grpc.CallSettings"/> for synchronous and asynchronous calls to
<c>BigtableClient.CheckAndMutateRow</c> and <c>BigtableClient.CheckAndMutateRowAsync</c>.
</summary>
<remarks>
The default <c>BigtableClient.CheckAndMutateRow</c> and
<c>BigtableClient.CheckAndMutateRowAsync</c> <see cref="T:Google.Api.Gax.Grpc.RetrySettings"/> are:
<list type="bullet">
<item><description>Initial retry delay: 100 milliseconds</description></item>
<item><description>Retry delay multiplier: 1.3</description></item>
<item><description>Retry maximum delay: 60000 milliseconds</description></item>
<item><description>Initial timeout: 20000 milliseconds</description></item>
<item><description>Timeout multiplier: 1.0</description></item>
<item><description>Timeout maximum delay: 20000 milliseconds</description></item>
</list>
Retry will be attempted on the following response status codes:
<list>
<item><description>No status codes</description></item>
</list>
Default RPC expiration is 600000 milliseconds.
</remarks>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableSettings.ReadModifyWriteRowSettings">
<summary>
<see cref="T:Google.Api.Gax.Grpc.CallSettings"/> for synchronous and asynchronous calls to
<c>BigtableClient.ReadModifyWriteRow</c> and <c>BigtableClient.ReadModifyWriteRowAsync</c>.
</summary>
<remarks>
The default <c>BigtableClient.ReadModifyWriteRow</c> and
<c>BigtableClient.ReadModifyWriteRowAsync</c> <see cref="T:Google.Api.Gax.Grpc.RetrySettings"/> are:
<list type="bullet">
<item><description>Initial retry delay: 100 milliseconds</description></item>
<item><description>Retry delay multiplier: 1.3</description></item>
<item><description>Retry maximum delay: 60000 milliseconds</description></item>
<item><description>Initial timeout: 20000 milliseconds</description></item>
<item><description>Timeout multiplier: 1.0</description></item>
<item><description>Timeout maximum delay: 20000 milliseconds</description></item>
</list>
Retry will be attempted on the following response status codes:
<list>
<item><description>No status codes</description></item>
</list>
Default RPC expiration is 600000 milliseconds.
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableSettings.Clone">
<summary>
Creates a deep clone of this object, with all the same property values.
</summary>
<returns>A deep clone of this <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/> object.</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableClient">
<summary>
Bigtable client wrapper, for convenient use.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClient.DefaultEndpoint">
<summary>
The default endpoint for the Bigtable service, which is a host of "bigtable.googleapis.com" and a port of 443.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClient.DefaultScopes">
<summary>
The default Bigtable scopes.
</summary>
<remarks>
The default Bigtable scopes are:
<list type="bullet">
<item><description>"https://www.googleapis.com/auth/bigtable.data"</description></item>
<item><description>"https://www.googleapis.com/auth/bigtable.data.readonly"</description></item>
<item><description>"https://www.googleapis.com/auth/cloud-bigtable.data"</description></item>
<item><description>"https://www.googleapis.com/auth/cloud-bigtable.data.readonly"</description></item>
<item><description>"https://www.googleapis.com/auth/cloud-platform"</description></item>
<item><description>"https://www.googleapis.com/auth/cloud-platform.read-only"</description></item>
</list>
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CreateAsync(Google.Api.Gax.Grpc.ServiceEndpoint,Google.Cloud.Bigtable.V2.BigtableSettings)">
<summary>
Asynchronously creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/>, applying defaults for all unspecified settings,
and creating a channel connecting to the given endpoint with application default credentials where
necessary.
</summary>
<param name="endpoint">Optional <see cref="T:Google.Api.Gax.Grpc.ServiceEndpoint"/>.</param>
<param name="settings">Optional <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/>.</param>
<returns>The task representing the created <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/>.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.Create(Google.Api.Gax.Grpc.ServiceEndpoint,Google.Cloud.Bigtable.V2.BigtableSettings)">
<summary>
Synchronously creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/>, applying defaults for all unspecified settings,
and creating a channel connecting to the given endpoint with application default credentials where
necessary.
</summary>
<param name="endpoint">Optional <see cref="T:Google.Api.Gax.Grpc.ServiceEndpoint"/>.</param>
<param name="settings">Optional <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/>.</param>
<returns>The created <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/>.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.Create(Grpc.Core.Channel,Google.Cloud.Bigtable.V2.BigtableSettings)">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/> which uses the specified channel for remote operations.
</summary>
<param name="channel">The <see cref="T:Grpc.Core.Channel"/> for remote operations. Must not be null.</param>
<param name="settings">Optional <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/>.</param>
<returns>The created <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient"/>.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ShutdownDefaultChannelsAsync">
<summary>
Shuts down any channels automatically created by <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.Create(Google.Api.Gax.Grpc.ServiceEndpoint,Google.Cloud.Bigtable.V2.BigtableSettings)"/>
and <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.CreateAsync(Google.Api.Gax.Grpc.ServiceEndpoint,Google.Cloud.Bigtable.V2.BigtableSettings)"/>. Channels which weren't automatically
created are not affected.
</summary>
<remarks>After calling this method, further calls to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.Create(Google.Api.Gax.Grpc.ServiceEndpoint,Google.Cloud.Bigtable.V2.BigtableSettings)"/>
and <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.CreateAsync(Google.Api.Gax.Grpc.ServiceEndpoint,Google.Cloud.Bigtable.V2.BigtableSettings)"/> will create new channels, which could
in turn be shut down by another call to this method.</remarks>
<returns>A task representing the asynchronous shutdown operation.</returns>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClient.GrpcClient">
<summary>
The underlying gRPC Bigtable client.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRows(Google.Cloud.Bigtable.V2.ReadRowsRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each. Depending on their size,
rows and cells may be broken up across multiple responses, but
atomicity of each row will still be preserved. See the
ReadRowsResponse documentation for details.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableClient.ReadRowsStream">
<summary>
Server streaming methods for <c>ReadRows</c>.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRowsStream.AsAsyncEnumerable">
<summary>
Returns an asynchronous sequence of rows from this set of results.
</summary>
<returns>An asynchronous sequence of rows from this set of results.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.SampleRowKeys(Google.Cloud.Bigtable.V2.SampleRowKeysRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Returns a sample of row keys in the table. The returned row keys will
delimit contiguous sections of the table of approximately equal size,
which can be used to break up the data for distributed tasks like
mapreduces.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableClient.SampleRowKeysStream">
<summary>
Server streaming methods for <c>SampleRowKeys</c>.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="tableName">
The unique name of the table to which the mutation should be applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Threading.CancellationToken)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="tableName">
The unique name of the table to which the mutation should be applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000.
</param>
<param name="cancellationToken">
A <see cref="T:System.Threading.CancellationToken"/> to use for this RPC.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="tableName">
The unique name of the table to which the mutation should be applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRows(Google.Cloud.Bigtable.V2.MutateRowsRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates multiple rows in a batch. Each individual row is mutated
atomically as in MutateRow, but the entire batch is not executed
atomically.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowsStream">
<summary>
Server streaming methods for <c>MutateRows</c>.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,Google.Cloud.Bigtable.V2.RowFilter,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, either `true_mutations` or
`false_mutations` will be executed. If unset, checks that the row contains
any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if `predicate_filter`
yields at least one cell when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `false_mutations` is empty, and at most
100000.
</param>
<param name="falseMutations">
Changes to be atomically applied to the specified row if `predicate_filter`
does not yield any cells when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `true_mutations` is empty, and at most
100000.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,Google.Cloud.Bigtable.V2.RowFilter,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Threading.CancellationToken)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, either `true_mutations` or
`false_mutations` will be executed. If unset, checks that the row contains
any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if `predicate_filter`
yields at least one cell when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `false_mutations` is empty, and at most
100000.
</param>
<param name="falseMutations">
Changes to be atomically applied to the specified row if `predicate_filter`
does not yield any cells when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `true_mutations` is empty, and at most
100000.
</param>
<param name="cancellationToken">
A <see cref="T:System.Threading.CancellationToken"/> to use for this RPC.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,Google.Cloud.Bigtable.V2.RowFilter,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, either `true_mutations` or
`false_mutations` will be executed. If unset, checks that the row contains
any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if `predicate_filter`
yields at least one cell when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `false_mutations` is empty, and at most
100000.
</param>
<param name="falseMutations">
Changes to be atomically applied to the specified row if `predicate_filter`
does not yield any cells when applied to `row_key`. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if `true_mutations` is empty, and at most
100000.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.ReadModifyWriteRule},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.ReadModifyWriteRule},System.Threading.CancellationToken)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones.
</param>
<param name="cancellationToken">
A <see cref="T:System.Threading.CancellationToken"/> to use for this RPC.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.TableName,Google.Protobuf.ByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.ReadModifyWriteRule},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied.
Values are of the form
`projects/<project>/instances/<instance>/tables/<table>`.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
Must not be empty.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, either <paramref name="trueMutations"/> or
<paramref name="falseMutations"/> will be executed. If null, checks that the row contains
any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if <paramref name="predicateFilter"/>
yields at least one cell when applied to <paramref name="rowKey"/>. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if <paramref name="falseMutations"/> is null or empty, and
at most 100000. Can be null or empty, but must not contain null elements.
</param>
<param name="falseMutations">
Changes to be atomically applied to the specified row if <paramref name="predicateFilter"/>
does not yield any cells when applied to <paramref name="rowKey"/>. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if <paramref name="trueMutations"/> is null or empty, and
at most 100000. Can be null or empty, but must not contain null elements.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The response from trying to mutate the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,Google.Cloud.Bigtable.V2.Mutation[])">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
Must not be empty.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, <paramref name="trueMutations"/> may or may not
be executed. If null, checks that the row contains any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if <paramref name="predicateFilter"/>
yields at least one cell when applied to <paramref name="rowKey"/>. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000. Must not be null, or contain null elements.
</param>
<returns>
The response from trying to mutate the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Asynchronously mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
Must not be empty.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, either <paramref name="trueMutations"/> or
<paramref name="falseMutations"/> will be executed. If null, checks that the row contains
any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if <paramref name="predicateFilter"/>
yields at least one cell when applied to <paramref name="rowKey"/>. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if <paramref name="falseMutations"/> is null or empty, and
at most 100000. Can be null or empty, but must not contain null elements.
</param>
<param name="falseMutations">
Changes to be atomically applied to the specified row if <paramref name="predicateFilter"/>
does not yield any cells when applied to <paramref name="rowKey"/>. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry if <paramref name="trueMutations"/> is null or empty, and
at most 100000. Can be null or empty, but must not contain null elements.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The response from trying to mutate the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,Google.Cloud.Bigtable.V2.Mutation[])">
<summary>
Asynchronously mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the conditional mutation should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the conditional mutation should be applied.
Must not be empty.
</param>
<param name="predicateFilter">
The filter to be applied to the contents of the specified row. Depending
on whether or not any results are yielded, <paramref name="trueMutations"/> may or may not
be executed. If null, checks that the row contains any values at all.
</param>
<param name="trueMutations">
Changes to be atomically applied to the specified row if <paramref name="predicateFilter"/>
yields at least one cell when applied to <paramref name="rowKey"/>. Entries are applied in
order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000. Must not be null, or contain null elements.
</param>
<returns>
The response from trying to mutate the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by <paramref name="mutations"/>.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the mutation should be applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied. Must not be empty.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000. Must not be null, or contain null
elements.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The response from mutating the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.Mutation[])">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by <paramref name="mutations"/>.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the mutation should be applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied. Must not be empty.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000. Must not be null, or contain null
elements.
</param>
<returns>
The response from mutating the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.Mutation},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Asynchronously mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by <paramref name="mutations"/>.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the mutation should be applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied. Must not be empty.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000. Must not be null, or contain null
elements.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The response from mutating the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.Mutation[])">
<summary>
Asynchronously mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by <paramref name="mutations"/>.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the mutation should be applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the mutation should be applied. Must not be empty.
</param>
<param name="mutations">
Changes to be atomically applied to the specified row. Entries are applied
in order, meaning that earlier mutations can be masked by later ones.
Must contain at least one entry and at most 100000. Must not be null, or contain null
elements.
</param>
<returns>
The response from mutating the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.ReadModifyWriteRule},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically on the server. The method reads the latest existing version
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the version is the
greater of the previous value's version or the current server version. The method
returns the new contents of all modified cells.
</summary>
<remarks>
<para>
Note that the server version is based on the current timestamp since the Unix epoch, so for
columns which are updated using ReadModifyWriteRow, other reads and writes of those columns
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed
to using a custom versioning scheme with 64-bit values.
</para>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
Must not be empty.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones. Must not be null, or contain null
elements.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The response from modifying the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.ReadModifyWriteRule[])">
<summary>
Modifies a row atomically on the server. The method reads the latest existing version
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the version is the
greater of the previous value's version or the current server version. The method
returns the new contents of all modified cells.
</summary>
<remarks>
<para>
Note that the server version is based on the current timestamp since the Unix epoch, so for
columns which are updated using ReadModifyWriteRow, other reads and writes of those columns
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed
to using a custom versioning scheme with 64-bit values.
</para>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
Must not be empty.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones. Must not be null, or contain null
elements.
</param>
<returns>
The response from modifying the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,System.Collections.Generic.IEnumerable{Google.Cloud.Bigtable.V2.ReadModifyWriteRule},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Asynchronously modifies a row atomically on the server. The method reads the latest existing version
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the version is the
greater of the previous value's version or the current server version. The method
returns the new contents of all modified cells.
</summary>
<remarks>
<para>
Note that the server version is based on the current timestamp since the Unix epoch, so for
columns which are updated using ReadModifyWriteRow, other reads and writes of those columns
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed
to using a custom versioning scheme with 64-bit values.
</para>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
Must not be empty.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones. Must not be null, or contain null
elements.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The response from modifying the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.ReadModifyWriteRule[])">
<summary>
Asynchronously modifies a row atomically on the server. The method reads the latest existing version
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the version is the
greater of the previous value's version or the current server version. The method
returns the new contents of all modified cells.
</summary>
<remarks>
<para>
Note that the server version is based on the current timestamp since the Unix epoch, so for
columns which are updated using ReadModifyWriteRow, other reads and writes of those columns
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed
to using a custom versioning scheme with 64-bit values.
</para>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>, so <paramref name="rowKey"/> can
be specified using a string as well and its UTF-8 representations will be used.
</para>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table to which the read/modify/write rules should be
applied. Must not be null.
</param>
<param name="rowKey">
The key of the row to which the read/modify/write rules should be applied.
Must not be empty.
</param>
<param name="rules">
Rules specifying how the specified row's contents are to be transformed
into writes. Entries are applied in order, meaning that earlier rules will
affect the results of later ones. Must not be null, or contain null
elements.
</param>
<returns>
The response from modifying the row.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRow(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Returns the contents of the requested row, optionally applying the specified Reader filter.
</summary>
<remarks>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table from which to read. Must not be null.
</param>
<param name="rowKey">
The key of the row to read. Must not be empty.
</param>
<param name="filter">
The filter to apply to the contents of the specified row. If null,
reads the entirety of the row.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The row from the server or null if it does not exist.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRowAsync(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.RowFilter,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Asynchronously returns the contents of the requested row, optionally applying the specified Reader filter.
</summary>
<remarks>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRows(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.RowSet,Google.Cloud.Bigtable.V2.RowFilter,System.Nullable{System.Int64},Google.Api.Gax.Grpc.CallSettings)"/>
and takes the single row result or null if no rows are returned.
</para>
</remarks>
<param name="tableName">
The unique name of the table from which to read. Must not be null.
</param>
<param name="rowKey">
The key of the row to read. Must not be empty.
</param>
<param name="filter">
The filter to apply to the contents of the specified row. If null,
reads the entirety of the row.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The row from the server or null if it does not exist.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRows(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.RowSet,Google.Cloud.Bigtable.V2.RowFilter,System.Nullable{System.Int64},Google.Api.Gax.Grpc.CallSettings)">
<summary>
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each.
</summary>
<remarks>
<para>
This method simply delegates to <see cref="M:Google.Cloud.Bigtable.V2.BigtableClient.ReadRows(Google.Cloud.Bigtable.V2.ReadRowsRequest,Google.Api.Gax.Grpc.CallSettings)"/>.
</para>
</remarks>
<param name="tableName">
The unique name of the table from which to read. Must not be null.
</param>
<param name="rows">
The row keys and/or ranges to read. If null, reads from all rows.
</param>
<param name="filter">
The filter to apply to the contents of the specified row(s). If null,
reads the entirety of each row.
</param>
<param name="rowsLimit">
The read will terminate after committing to N rows' worth of results.
If null or 0, returns all results.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableClientImpl">
<summary>
Bigtable client wrapper implementation, for convenient use.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.#ctor(Google.Cloud.Bigtable.V2.Bigtable.BigtableClient,Google.Cloud.Bigtable.V2.BigtableSettings)">
<summary>
Constructs a client wrapper for the Bigtable service, with the specified gRPC client and settings.
</summary>
<param name="grpcClient">The underlying gRPC client.</param>
<param name="settings">The base <see cref="T:Google.Cloud.Bigtable.V2.BigtableSettings"/> used within this client </param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.GrpcClient">
<summary>
The underlying gRPC Bigtable client.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.ReadRows(Google.Cloud.Bigtable.V2.ReadRowsRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each. Depending on their size,
rows and cells may be broken up across multiple responses, but
atomicity of each row will still be preserved. See the
ReadRowsResponse documentation for details.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.ReadRowsStreamImpl.#ctor(Grpc.Core.AsyncServerStreamingCall{Google.Cloud.Bigtable.V2.ReadRowsResponse})">
<summary>
Construct the server-streaming method for <c>ReadRows</c>.
</summary>
<param name="call">The underlying gRPC server-streaming call.</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.ReadRowsStreamImpl.GrpcCall">
<inheritdoc/>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.ReadRowsStreamImpl.ResponseStream">
<inheritdoc/>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.SampleRowKeys(Google.Cloud.Bigtable.V2.SampleRowKeysRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Returns a sample of row keys in the table. The returned row keys will
delimit contiguous sections of the table of approximately equal size,
which can be used to break up the data for distributed tasks like
mapreduces.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.SampleRowKeysStreamImpl.#ctor(Grpc.Core.AsyncServerStreamingCall{Google.Cloud.Bigtable.V2.SampleRowKeysResponse})">
<summary>
Construct the server-streaming method for <c>SampleRowKeys</c>.
</summary>
<param name="call">The underlying gRPC server-streaming call.</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.SampleRowKeysStreamImpl.GrpcCall">
<inheritdoc/>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.SampleRowKeysStreamImpl.ResponseStream">
<inheritdoc/>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.MutateRowAsync(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.MutateRows(Google.Cloud.Bigtable.V2.MutateRowsRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates multiple rows in a batch. Each individual row is mutated
atomically as in MutateRow, but the entire batch is not executed
atomically.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The server stream.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.MutateRowsStreamImpl.#ctor(Grpc.Core.AsyncServerStreamingCall{Google.Cloud.Bigtable.V2.MutateRowsResponse})">
<summary>
Construct the server-streaming method for <c>MutateRows</c>.
</summary>
<param name="call">The underlying gRPC server-streaming call.</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.MutateRowsStreamImpl.GrpcCall">
<inheritdoc/>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableClientImpl.MutateRowsStreamImpl.ResponseStream">
<inheritdoc/>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
A Task containing the RPC response.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableClientImpl.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Google.Api.Gax.Grpc.CallSettings)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">
The request object containing all of the parameters for the API call.
</param>
<param name="callSettings">
If not null, applies overrides to this RPC call.
</param>
<returns>
The RPC response.
</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Bigtable">
<summary>
Service for reading from and writing to existing Bigtable tables.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Bigtable.Descriptor">
<summary>Service descriptor</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase">
<summary>Base class for server-side implementations of Bigtable</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase.ReadRows(Google.Cloud.Bigtable.V2.ReadRowsRequest,Grpc.Core.IServerStreamWriter{Google.Cloud.Bigtable.V2.ReadRowsResponse},Grpc.Core.ServerCallContext)">
<summary>
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each. Depending on their size,
rows and cells may be broken up across multiple responses, but
atomicity of each row will still be preserved. See the
ReadRowsResponse documentation for details.
</summary>
<param name="request">The request received from the client.</param>
<param name="responseStream">Used for sending responses back to the client.</param>
<param name="context">The context of the server-side call handler being invoked.</param>
<returns>A task indicating completion of the handler.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase.SampleRowKeys(Google.Cloud.Bigtable.V2.SampleRowKeysRequest,Grpc.Core.IServerStreamWriter{Google.Cloud.Bigtable.V2.SampleRowKeysResponse},Grpc.Core.ServerCallContext)">
<summary>
Returns a sample of row keys in the table. The returned row keys will
delimit contiguous sections of the table of approximately equal size,
which can be used to break up the data for distributed tasks like
mapreduces.
</summary>
<param name="request">The request received from the client.</param>
<param name="responseStream">Used for sending responses back to the client.</param>
<param name="context">The context of the server-side call handler being invoked.</param>
<returns>A task indicating completion of the handler.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Grpc.Core.ServerCallContext)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">The request received from the client.</param>
<param name="context">The context of the server-side call handler being invoked.</param>
<returns>The response to send back to the client (wrapped by a task).</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase.MutateRows(Google.Cloud.Bigtable.V2.MutateRowsRequest,Grpc.Core.IServerStreamWriter{Google.Cloud.Bigtable.V2.MutateRowsResponse},Grpc.Core.ServerCallContext)">
<summary>
Mutates multiple rows in a batch. Each individual row is mutated
atomically as in MutateRow, but the entire batch is not executed
atomically.
</summary>
<param name="request">The request received from the client.</param>
<param name="responseStream">Used for sending responses back to the client.</param>
<param name="context">The context of the server-side call handler being invoked.</param>
<returns>A task indicating completion of the handler.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Grpc.Core.ServerCallContext)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">The request received from the client.</param>
<param name="context">The context of the server-side call handler being invoked.</param>
<returns>The response to send back to the client (wrapped by a task).</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableBase.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Grpc.Core.ServerCallContext)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">The request received from the client.</param>
<param name="context">The context of the server-side call handler being invoked.</param>
<returns>The response to send back to the client (wrapped by a task).</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient">
<summary>Client for Bigtable</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.#ctor(Grpc.Core.Channel)">
<summary>Creates a new client for Bigtable</summary>
<param name="channel">The channel to use to make remote calls.</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.#ctor(Grpc.Core.CallInvoker)">
<summary>Creates a new client for Bigtable that uses a custom <c>CallInvoker</c>.</summary>
<param name="callInvoker">The callInvoker to use to make remote calls.</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.#ctor">
<summary>Protected parameterless constructor to allow creation of test doubles.</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)">
<summary>Protected constructor to allow creation of configured clients.</summary>
<param name="configuration">The client configuration.</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.ReadRows(Google.Cloud.Bigtable.V2.ReadRowsRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each. Depending on their size,
rows and cells may be broken up across multiple responses, but
atomicity of each row will still be preserved. See the
ReadRowsResponse documentation for details.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.ReadRows(Google.Cloud.Bigtable.V2.ReadRowsRequest,Grpc.Core.CallOptions)">
<summary>
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each. Depending on their size,
rows and cells may be broken up across multiple responses, but
atomicity of each row will still be preserved. See the
ReadRowsResponse documentation for details.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.SampleRowKeys(Google.Cloud.Bigtable.V2.SampleRowKeysRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Returns a sample of row keys in the table. The returned row keys will
delimit contiguous sections of the table of approximately equal size,
which can be used to break up the data for distributed tasks like
mapreduces.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.SampleRowKeys(Google.Cloud.Bigtable.V2.SampleRowKeysRequest,Grpc.Core.CallOptions)">
<summary>
Returns a sample of row keys in the table. The returned row keys will
delimit contiguous sections of the table of approximately equal size,
which can be used to break up the data for distributed tasks like
mapreduces.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The response received from the server.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.MutateRow(Google.Cloud.Bigtable.V2.MutateRowRequest,Grpc.Core.CallOptions)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The response received from the server.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.MutateRowRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.MutateRowAsync(Google.Cloud.Bigtable.V2.MutateRowRequest,Grpc.Core.CallOptions)">
<summary>
Mutates a row atomically. Cells already present in the row are left
unchanged unless explicitly changed by `mutation`.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.MutateRows(Google.Cloud.Bigtable.V2.MutateRowsRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Mutates multiple rows in a batch. Each individual row is mutated
atomically as in MutateRow, but the entire batch is not executed
atomically.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.MutateRows(Google.Cloud.Bigtable.V2.MutateRowsRequest,Grpc.Core.CallOptions)">
<summary>
Mutates multiple rows in a batch. Each individual row is mutated
atomically as in MutateRow, but the entire batch is not executed
atomically.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The response received from the server.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.CheckAndMutateRow(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Grpc.Core.CallOptions)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The response received from the server.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.CheckAndMutateRowAsync(Google.Cloud.Bigtable.V2.CheckAndMutateRowRequest,Grpc.Core.CallOptions)">
<summary>
Mutates a row atomically based on the output of a predicate Reader filter.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The response received from the server.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.ReadModifyWriteRow(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Grpc.Core.CallOptions)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The response received from the server.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">The request to send to the server.</param>
<param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
<param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
<param name="cancellationToken">An optional token for canceling the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.ReadModifyWriteRowAsync(Google.Cloud.Bigtable.V2.ReadModifyWriteRowRequest,Grpc.Core.CallOptions)">
<summary>
Modifies a row atomically. The method reads the latest existing timestamp
and value from the specified columns and writes a new entry based on
pre-defined read/modify/write rules. The new value for the timestamp is the
greater of the existing timestamp or the current server time. The method
returns the new contents of all modified cells.
</summary>
<param name="request">The request to send to the server.</param>
<param name="options">The options for the call.</param>
<returns>The call object.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BigtableClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)">
<summary>Creates a new instance of client from given <c>ClientBaseConfiguration</c>.</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Bigtable.BindService(Google.Cloud.Bigtable.V2.Bigtable.BigtableBase)">
<summary>Creates service definition that can be registered with a server</summary>
<param name="serviceImpl">An object implementing the server-side handling logic.</param>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableVersion">
<summary>
A version which uniquely identifies a cell within a column.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a custom versioning
scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to the underlying
microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.#ctor(System.Int64)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> value from a 64-bit value.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a custom versioning
scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to the underlying
microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
<param name="value">
The non-negative version value, or -1 to initialize from the milliseconds of DateTime.UtcNow.
Must be less than or equal to 9223372036854775.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.#ctor(System.DateTime)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> value from the milliseconds of a timestamp since the Unix epoch.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a custom versioning
scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to the underlying
microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
<param name="timestamp">
The timestamp whose milliseconds since the Unix epoch should be used as the version value. It must be specified in UTC.
</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros">
<summary>
Gets the version value interpreted as microseconds of a timestamp since the Unix epoch.
Greater version values indicate newer cell values.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value">
<summary>
Gets the version value. Greater version values indicate newer cell values.
</summary>
<remarks>
If timestamps are used as versions, this would be the milliseconds since the Unix epoch.
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.ToDateTime">
<summary>
Gets the DateTime equivalent to the version assuming the value is a timestamp milliseconds value since the Unix epoch.
</summary>
<returns>The DateTime representing the version timestamp.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.CompareTo(System.Object)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.CompareTo(Google.Cloud.Bigtable.V2.BigtableVersion)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.Compare(System.Nullable{Google.Cloud.Bigtable.V2.BigtableVersion},System.Nullable{Google.Cloud.Bigtable.V2.BigtableVersion})">
<summary>
Compares two nullable <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is less than <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.Equals(Google.Cloud.Bigtable.V2.BigtableVersion)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.GetHashCode">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.ToString">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.op_LessThan(Google.Cloud.Bigtable.V2.BigtableVersion,Google.Cloud.Bigtable.V2.BigtableVersion)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is less than <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.op_LessThanOrEqual(Google.Cloud.Bigtable.V2.BigtableVersion,Google.Cloud.Bigtable.V2.BigtableVersion)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is less than or equal <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.op_Equality(Google.Cloud.Bigtable.V2.BigtableVersion,Google.Cloud.Bigtable.V2.BigtableVersion)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values for equality.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is equal to <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.op_Inequality(Google.Cloud.Bigtable.V2.BigtableVersion,Google.Cloud.Bigtable.V2.BigtableVersion)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values for inequality.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is not equal to <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.op_GreaterThanOrEqual(Google.Cloud.Bigtable.V2.BigtableVersion,Google.Cloud.Bigtable.V2.BigtableVersion)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is greater than or equal <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersion.op_GreaterThan(Google.Cloud.Bigtable.V2.BigtableVersion,Google.Cloud.Bigtable.V2.BigtableVersion)">
<summary>
Operator overload to compare two <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values.
</summary>
<param name="x">Left value to compare</param>
<param name="y">Right value to compare</param>
<returns>true if <paramref name="x"/> is greater than <paramref name="y"/>; otherwise false.</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.BigtableVersionRange">
<summary>
A contiguous range of versions.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a
custom versioning scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to
the underlying microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.#ctor(System.Nullable{Google.Cloud.Bigtable.V2.BigtableVersion},System.Nullable{Google.Cloud.Bigtable.V2.BigtableVersion})">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersionRange"/>.
</summary>
<param name="start">Inclusive lower bound. If null, interpreted as 0.</param>
<param name="end">Exclusive upper bound. If null, interpreted as infinity.</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersionRange"/>.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a
custom versioning scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to
the underlying microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
<param name="start">
Inclusive lower bound non-negative version value, or -1 to initialize from the
milliseconds of DateTime.UtcNow. Must be less than or equal to 9223372036854775.
If null, interpreted as 0.
</param>
<param name="end">
Exclusive upper bound non-negative version value, or -1 to initialize from the
milliseconds of DateTime.UtcNow. Must be less than or equal to 9223372036854775.
If null, interpreted as infinity.
</param>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.#ctor(System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersionRange"/>.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a
custom versioning scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to
the underlying microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
<param name="startTimestamp">
Inclusive lower bound timestamp whose milliseconds since the Unix epoch should be used as the version value.
If null, interpreted as 0. It must be specified in UTC.
</param>
<param name="endTimestamp">
Exclusive upper bound timestamp whose milliseconds since the Unix epoch should be used as the version value.
If null, interpreted as infinity. It must be specified in UTC.
</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableVersionRange.Start">
<summary>
Gets the inclusive lower bound. If null, interpreted as 0.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.BigtableVersionRange.End">
<summary>
Gets the exclusive upper bound. If null, interpreted as infinity.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.Equals(Google.Cloud.Bigtable.V2.BigtableVersionRange)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.GetHashCode">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.BigtableVersionRange.ToString">
<inheritdoc />
</member>
<member name="T:Google.Cloud.Bigtable.V2.DataReflection">
<summary>Holder for reflection information generated from google/bigtable/v2/data.proto</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.DataReflection.Descriptor">
<summary>File descriptor for google/bigtable/v2/data.proto</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Row">
<summary>
Specifies the complete (requested) contents of a single row of a table.
Rows which exceed 256MiB in size cannot be read in full.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Row.KeyFieldNumber">
<summary>Field number for the "key" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Row.Key">
<summary>
The unique key which identifies this row within its table. This is the same
key that's used to identify the row in, for example, a MutateRowRequest.
May contain any non-empty byte string up to 4KiB in length.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Row.FamiliesFieldNumber">
<summary>Field number for the "families" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Row.Families">
<summary>
May be empty, but only if the entire row is empty.
The mutual ordering of column families is not specified.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Family">
<summary>
Specifies (some of) the contents of a single row/column family intersection
of a table.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Family.NameFieldNumber">
<summary>Field number for the "name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Family.Name">
<summary>
The unique key which identifies this family within its row. This is the
same key that's used to identify the family in, for example, a RowFilter
which sets its "family_name_regex_filter" field.
Must match `[-_.a-zA-Z0-9]+`, except that AggregatingRowProcessors may
produce cells in a sentinel family with an empty name.
Must be no greater than 64 characters in length.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Family.ColumnsFieldNumber">
<summary>Field number for the "columns" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Family.Columns">
<summary>
Must not be empty. Sorted in order of increasing "qualifier".
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Column">
<summary>
Specifies (some of) the contents of a single row/column intersection of a
table.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Column.QualifierFieldNumber">
<summary>Field number for the "qualifier" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Column.Qualifier">
<summary>
The unique key which identifies this column within its family. This is the
same key that's used to identify the column in, for example, a RowFilter
which sets its `column_qualifier_regex_filter` field.
May contain any byte string, including the empty string, up to 16kiB in
length.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Column.CellsFieldNumber">
<summary>Field number for the "cells" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Column.Cells">
<summary>
Must not be empty. Sorted in order of decreasing "timestamp_micros".
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Cell">
<summary>
Specifies (some of) the contents of a single row/column/timestamp of a table.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Cell.TimestampMicrosFieldNumber">
<summary>Field number for the "timestamp_micros" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Cell.TimestampMicros">
<summary>
The cell's stored timestamp, which also uniquely identifies it within
its column.
Values are always expressed in microseconds, but individual tables may set
a coarser granularity to further restrict the allowed values. For
example, a table which specifies millisecond granularity will only allow
values of `timestamp_micros` which are multiples of 1000.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Cell.ValueFieldNumber">
<summary>Field number for the "value" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Cell.Value">
<summary>
The value stored in the cell.
May contain any byte string, including the empty string, up to 100MiB in
length.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Cell.LabelsFieldNumber">
<summary>Field number for the "labels" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Cell.Labels">
<summary>
Labels applied to the cell by a [RowFilter][google.bigtable.v2.RowFilter].
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowRange">
<summary>
Specifies a contiguous range of rows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowRange.StartKeyClosedFieldNumber">
<summary>Field number for the "start_key_closed" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowRange.StartKeyClosed">
<summary>
Used when giving an inclusive lower bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowRange.StartKeyOpenFieldNumber">
<summary>Field number for the "start_key_open" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowRange.StartKeyOpen">
<summary>
Used when giving an exclusive lower bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowRange.EndKeyOpenFieldNumber">
<summary>Field number for the "end_key_open" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowRange.EndKeyOpen">
<summary>
Used when giving an exclusive upper bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowRange.EndKeyClosedFieldNumber">
<summary>Field number for the "end_key_closed" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowRange.EndKeyClosed">
<summary>
Used when giving an inclusive upper bound for the range.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowRange.StartKeyOneofCase">
<summary>Enum of possible cases for the "start_key" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowRange.EndKeyOneofCase">
<summary>Enum of possible cases for the "end_key" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowSet">
<summary>
Specifies a non-contiguous set of rows.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowSet.RowKeysFieldNumber">
<summary>Field number for the "row_keys" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowSet.RowKeys">
<summary>
Single rows included in the set.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowSet.RowRangesFieldNumber">
<summary>Field number for the "row_ranges" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowSet.RowRanges">
<summary>
Contiguous row ranges included in the set.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ColumnRange">
<summary>
Specifies a contiguous range of columns within a single column family.
The range spans from &lt;column_family&gt;:&lt;start_qualifier&gt; to
&lt;column_family&gt;:&lt;end_qualifier&gt;, where both bounds can be either
inclusive or exclusive.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ColumnRange.FamilyNameFieldNumber">
<summary>Field number for the "family_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ColumnRange.FamilyName">
<summary>
The name of the column family within which this range falls.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ColumnRange.StartQualifierClosedFieldNumber">
<summary>Field number for the "start_qualifier_closed" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ColumnRange.StartQualifierClosed">
<summary>
Used when giving an inclusive lower bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ColumnRange.StartQualifierOpenFieldNumber">
<summary>Field number for the "start_qualifier_open" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ColumnRange.StartQualifierOpen">
<summary>
Used when giving an exclusive lower bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ColumnRange.EndQualifierClosedFieldNumber">
<summary>Field number for the "end_qualifier_closed" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ColumnRange.EndQualifierClosed">
<summary>
Used when giving an inclusive upper bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ColumnRange.EndQualifierOpenFieldNumber">
<summary>Field number for the "end_qualifier_open" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ColumnRange.EndQualifierOpen">
<summary>
Used when giving an exclusive upper bound for the range.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ColumnRange.StartQualifierOneofCase">
<summary>Enum of possible cases for the "start_qualifier" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ColumnRange.EndQualifierOneofCase">
<summary>Enum of possible cases for the "end_qualifier" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.TimestampRange">
<summary>
Specified a contiguous range of microsecond timestamps.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.TimestampRange.StartTimestampMicrosFieldNumber">
<summary>Field number for the "start_timestamp_micros" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.TimestampRange.StartTimestampMicros">
<summary>
Inclusive lower bound. If left empty, interpreted as 0.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.TimestampRange.EndTimestampMicrosFieldNumber">
<summary>Field number for the "end_timestamp_micros" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.TimestampRange.EndTimestampMicros">
<summary>
Exclusive upper bound. If left empty, interpreted as infinity.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ValueRange">
<summary>
Specifies a contiguous range of raw byte values.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ValueRange.StartValueClosedFieldNumber">
<summary>Field number for the "start_value_closed" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ValueRange.StartValueClosed">
<summary>
Used when giving an inclusive lower bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ValueRange.StartValueOpenFieldNumber">
<summary>Field number for the "start_value_open" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ValueRange.StartValueOpen">
<summary>
Used when giving an exclusive lower bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ValueRange.EndValueClosedFieldNumber">
<summary>Field number for the "end_value_closed" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ValueRange.EndValueClosed">
<summary>
Used when giving an inclusive upper bound for the range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ValueRange.EndValueOpenFieldNumber">
<summary>Field number for the "end_value_open" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ValueRange.EndValueOpen">
<summary>
Used when giving an exclusive upper bound for the range.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ValueRange.StartValueOneofCase">
<summary>Enum of possible cases for the "start_value" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ValueRange.EndValueOneofCase">
<summary>Enum of possible cases for the "end_value" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilter">
<summary>
Takes a row as input and produces an alternate view of the row based on
specified rules. For example, a RowFilter might trim down a row to include
just the cells from columns matching a given regular expression, or might
return all the cells of a row but not their values. More complicated filters
can be composed out of these components to express requests such as, "within
every column of a particular family, give just the two most recent cells
which are older than timestamp X."
There are two broad categories of RowFilters (true filters and transformers),
as well as two ways to compose simple filters into more complex ones
(chains and interleaves). They work as follows:
* True filters alter the input row by excluding some of its cells wholesale
from the output row. An example of a true filter is the `value_regex_filter`,
which excludes cells whose values don't match the specified pattern. All
regex true filters use RE2 syntax (https://github.com/google/re2/wiki/Syntax)
in raw byte mode (RE2::Latin1), and are evaluated as full matches. An
important point to keep in mind is that `RE2(.)` is equivalent by default to
`RE2([^\n])`, meaning that it does not match newlines. When attempting to
match an arbitrary byte, you should therefore use the escape sequence `\C`,
which may need to be further escaped as `\\C` in your client language.
* Transformers alter the input row by changing the values of some of its
cells in the output, without excluding them completely. Currently, the only
supported transformer is the `strip_value_transformer`, which replaces every
cell's value with the empty string.
* Chains and interleaves are described in more detail in the
RowFilter.Chain and RowFilter.Interleave documentation.
The total serialized size of a RowFilter message must not
exceed 4096 bytes, and RowFilters may not be nested within each other
(in Chains or Interleaves) to a depth of more than 20.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ChainFieldNumber">
<summary>Field number for the "chain" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Chain">
<summary>
Applies several RowFilters to the data in sequence, progressively
narrowing the results.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.InterleaveFieldNumber">
<summary>Field number for the "interleave" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Interleave">
<summary>
Applies several RowFilters to the data in parallel and combines the
results.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ConditionFieldNumber">
<summary>Field number for the "condition" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Condition">
<summary>
Applies one of two possible RowFilters to the data based on the output of
a predicate RowFilter.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.SinkFieldNumber">
<summary>Field number for the "sink" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Sink">
<summary>
ADVANCED USE ONLY.
Hook for introspection into the RowFilter. Outputs all cells directly to
the output of the read rather than to any parent filter. Consider the
following example:
Chain(
FamilyRegex("A"),
Interleave(
All(),
Chain(Label("foo"), Sink())
),
QualifierRegex("B")
)
A,A,1,w
A,B,2,x
B,B,4,z
|
FamilyRegex("A")
|
A,A,1,w
A,B,2,x
|
+------------+-------------+
| |
All() Label(foo)
| |
A,A,1,w A,A,1,w,labels:[foo]
A,B,2,x A,B,2,x,labels:[foo]
| |
| Sink() --------------+
| | |
+------------+ x------+ A,A,1,w,labels:[foo]
| A,B,2,x,labels:[foo]
A,A,1,w |
A,B,2,x |
| |
QualifierRegex("B") |
| |
A,B,2,x |
| |
+--------------------------------+
|
A,A,1,w,labels:[foo]
A,B,2,x,labels:[foo] // could be switched
A,B,2,x // could be switched
Despite being excluded by the qualifier filter, a copy of every cell
that reaches the sink is present in the final result.
As with an [Interleave][google.bigtable.v2.RowFilter.Interleave],
duplicate cells are possible, and appear in an unspecified mutual order.
In this case we have a duplicate with column "A:B" and timestamp 2,
because one copy passed through the all filter while the other was
passed through the label and sink. Note that one copy has label "foo",
while the other does not.
Cannot be used within the `predicate_filter`, `true_filter`, or
`false_filter` of a [Condition][google.bigtable.v2.RowFilter.Condition].
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.PassAllFilterFieldNumber">
<summary>Field number for the "pass_all_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.PassAllFilter">
<summary>
Matches all cells, regardless of input. Functionally equivalent to
leaving `filter` unset, but included for completeness.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.BlockAllFilterFieldNumber">
<summary>Field number for the "block_all_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.BlockAllFilter">
<summary>
Does not match any cells, regardless of input. Useful for temporarily
disabling just part of a filter.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.RowKeyRegexFilterFieldNumber">
<summary>Field number for the "row_key_regex_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.RowKeyRegexFilter">
<summary>
Matches only cells from rows whose keys satisfy the given RE2 regex. In
other words, passes through the entire row when the key matches, and
otherwise produces an empty row.
Note that, since row keys can contain arbitrary bytes, the `\C` escape
sequence must be used if a true wildcard is desired. The `.` character
will not match the new line character `\n`, which may be present in a
binary key.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.RowSampleFilterFieldNumber">
<summary>Field number for the "row_sample_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.RowSampleFilter">
<summary>
Matches all cells from a row with probability p, and matches no cells
from the row with probability 1-p.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.FamilyNameRegexFilterFieldNumber">
<summary>Field number for the "family_name_regex_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.FamilyNameRegexFilter">
<summary>
Matches only cells from columns whose families satisfy the given RE2
regex. For technical reasons, the regex must not contain the `:`
character, even if it is not being used as a literal.
Note that, since column families cannot contain the new line character
`\n`, it is sufficient to use `.` as a full wildcard when matching
column family names.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ColumnQualifierRegexFilterFieldNumber">
<summary>Field number for the "column_qualifier_regex_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.ColumnQualifierRegexFilter">
<summary>
Matches only cells from columns whose qualifiers satisfy the given RE2
regex.
Note that, since column qualifiers can contain arbitrary bytes, the `\C`
escape sequence must be used if a true wildcard is desired. The `.`
character will not match the new line character `\n`, which may be
present in a binary qualifier.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ColumnRangeFilterFieldNumber">
<summary>Field number for the "column_range_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.ColumnRangeFilter">
<summary>
Matches only cells from columns within the given range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.TimestampRangeFilterFieldNumber">
<summary>Field number for the "timestamp_range_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.TimestampRangeFilter">
<summary>
Matches only cells with timestamps within the given range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ValueRegexFilterFieldNumber">
<summary>Field number for the "value_regex_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.ValueRegexFilter">
<summary>
Matches only cells with values that satisfy the given regular expression.
Note that, since cell values can contain arbitrary bytes, the `\C` escape
sequence must be used if a true wildcard is desired. The `.` character
will not match the new line character `\n`, which may be present in a
binary value.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ValueRangeFilterFieldNumber">
<summary>Field number for the "value_range_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.ValueRangeFilter">
<summary>
Matches only cells with values that fall within the given range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.CellsPerRowOffsetFilterFieldNumber">
<summary>Field number for the "cells_per_row_offset_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.CellsPerRowOffsetFilter">
<summary>
Skips the first N cells of each row, matching all subsequent cells.
If duplicate cells are present, as is possible when using an Interleave,
each copy of the cell is counted separately.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.CellsPerRowLimitFilterFieldNumber">
<summary>Field number for the "cells_per_row_limit_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.CellsPerRowLimitFilter">
<summary>
Matches only the first N cells of each row.
If duplicate cells are present, as is possible when using an Interleave,
each copy of the cell is counted separately.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.CellsPerColumnLimitFilterFieldNumber">
<summary>Field number for the "cells_per_column_limit_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.CellsPerColumnLimitFilter">
<summary>
Matches only the most recent N cells within each column. For example,
if N=2, this filter would match column `foo:bar` at timestamps 10 and 9,
skip all earlier cells in `foo:bar`, and then begin matching again in
column `foo:bar2`.
If duplicate cells are present, as is possible when using an Interleave,
each copy of the cell is counted separately.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.StripValueTransformerFieldNumber">
<summary>Field number for the "strip_value_transformer" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.StripValueTransformer">
<summary>
Replaces each cell's value with the empty string.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.ApplyLabelTransformerFieldNumber">
<summary>Field number for the "apply_label_transformer" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.ApplyLabelTransformer">
<summary>
Applies the given label to all cells in the output row. This allows
the client to determine which results were produced from which part of
the filter.
Values must be at most 15 characters in length, and match the RE2
pattern `[a-z0-9\\-]+`
Due to a technical limitation, it is not currently possible to apply
multiple labels to a cell. As a result, a Chain may have no more than
one sub-filter which contains a `apply_label_transformer`. It is okay for
an Interleave to contain multiple `apply_label_transformers`, as they
will be applied to separate copies of the input. This may be relaxed in
the future.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilter.FilterOneofCase">
<summary>Enum of possible cases for the "filter" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilter.Types">
<summary>Container for nested types declared in the RowFilter message type.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilter.Types.Chain">
<summary>
A RowFilter which sends rows through several RowFilters in sequence.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.Types.Chain.FiltersFieldNumber">
<summary>Field number for the "filters" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Types.Chain.Filters">
<summary>
The elements of "filters" are chained together to process the input row:
in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row
The full chain is executed atomically.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilter.Types.Interleave">
<summary>
A RowFilter which sends each row to each of several component
RowFilters and interleaves the results.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.Types.Interleave.FiltersFieldNumber">
<summary>Field number for the "filters" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Types.Interleave.Filters">
<summary>
The elements of "filters" all process a copy of the input row, and the
results are pooled, sorted, and combined into a single output row.
If multiple cells are produced with the same column and timestamp,
they will all appear in the output row in an unspecified mutual order.
Consider the following example, with three filters:
input row
|
-----------------------------------------------------
| | |
f(0) f(1) f(2)
| | |
1: foo,bar,10,x foo,bar,10,z far,bar,7,a
2: foo,blah,11,z far,blah,5,x far,blah,5,x
| | |
-----------------------------------------------------
|
1: foo,bar,10,z // could have switched with #2
2: foo,bar,10,x // could have switched with #1
3: foo,blah,11,z
4: far,bar,7,a
5: far,blah,5,x // identical to #6
6: far,blah,5,x // identical to #5
All interleaved filters are executed atomically.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition">
<summary>
A RowFilter which evaluates one of two possible RowFilters, depending on
whether or not a predicate RowFilter outputs any cells from the input row.
IMPORTANT NOTE: The predicate filter does not execute atomically with the
true and false filters, which may lead to inconsistent or unexpected
results. Additionally, Condition filters have poor performance, especially
when filters are set for the false condition.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition.PredicateFilterFieldNumber">
<summary>Field number for the "predicate_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition.PredicateFilter">
<summary>
If `predicate_filter` outputs any cells, then `true_filter` will be
evaluated on the input row. Otherwise, `false_filter` will be evaluated.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition.TrueFilterFieldNumber">
<summary>Field number for the "true_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition.TrueFilter">
<summary>
The filter to apply to the input row if `predicate_filter` returns any
results. If not provided, no results will be returned in the true case.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition.FalseFilterFieldNumber">
<summary>Field number for the "false_filter" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowFilter.Types.Condition.FalseFilter">
<summary>
The filter to apply to the input row if `predicate_filter` does not
return any results. If not provided, no results will be returned in the
false case.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation">
<summary>
Specifies a particular change to be made to the contents of a row.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.SetCellFieldNumber">
<summary>Field number for the "set_cell" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.SetCell">
<summary>
Set a cell's value.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.DeleteFromColumnFieldNumber">
<summary>Field number for the "delete_from_column" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.DeleteFromColumn">
<summary>
Deletes cells from a column.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.DeleteFromFamilyFieldNumber">
<summary>Field number for the "delete_from_family" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.DeleteFromFamily">
<summary>
Deletes cells from a column family.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.DeleteFromRowFieldNumber">
<summary>Field number for the "delete_from_row" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.DeleteFromRow">
<summary>
Deletes cells from the entire row.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation.MutationOneofCase">
<summary>Enum of possible cases for the "mutation" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation.Types">
<summary>Container for nested types declared in the Mutation message type.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell">
<summary>
A Mutation which sets the value of the specified cell.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.FamilyNameFieldNumber">
<summary>Field number for the "family_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.FamilyName">
<summary>
The name of the family into which new data should be written.
Must match `[-_.a-zA-Z0-9]+`
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.ColumnQualifierFieldNumber">
<summary>Field number for the "column_qualifier" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.ColumnQualifier">
<summary>
The qualifier of the column into which new data should be written.
Can be any byte string, including the empty string.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.TimestampMicrosFieldNumber">
<summary>Field number for the "timestamp_micros" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.TimestampMicros">
<summary>
The timestamp of the cell into which new data should be written.
Use -1 for current Bigtable server time.
Otherwise, the client should set this value itself, noting that the
default value is a timestamp of zero if the field is left unspecified.
Values must match the granularity of the table (e.g. micros, millis).
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.ValueFieldNumber">
<summary>Field number for the "value" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.SetCell.Value">
<summary>
The value to be written into the specified cell.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn">
<summary>
A Mutation which deletes cells from the specified column, optionally
restricting the deletions to a given timestamp range.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn.FamilyNameFieldNumber">
<summary>Field number for the "family_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn.FamilyName">
<summary>
The name of the family from which cells should be deleted.
Must match `[-_.a-zA-Z0-9]+`
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn.ColumnQualifierFieldNumber">
<summary>Field number for the "column_qualifier" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn.ColumnQualifier">
<summary>
The qualifier of the column from which cells should be deleted.
Can be any byte string, including the empty string.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn.TimeRangeFieldNumber">
<summary>Field number for the "time_range" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromColumn.TimeRange">
<summary>
The range of timestamps within which cells should be deleted.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromFamily">
<summary>
A Mutation which deletes all cells from the specified column family.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromFamily.FamilyNameFieldNumber">
<summary>Field number for the "family_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromFamily.FamilyName">
<summary>
The name of the family from which cells should be deleted.
Must match `[-_.a-zA-Z0-9]+`
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutation.Types.DeleteFromRow">
<summary>
A Mutation which deletes all cells from the containing row.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadModifyWriteRule">
<summary>
Specifies an atomic read/modify/write operation on the latest value of the
specified column.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.FamilyNameFieldNumber">
<summary>Field number for the "family_name" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.FamilyName">
<summary>
The name of the family to which the read/modify/write should be applied.
Must match `[-_.a-zA-Z0-9]+`
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.ColumnQualifierFieldNumber">
<summary>Field number for the "column_qualifier" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.ColumnQualifier">
<summary>
The qualifier of the column to which the read/modify/write should be
applied.
Can be any byte string, including the empty string.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.AppendValueFieldNumber">
<summary>Field number for the "append_value" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.AppendValue">
<summary>
Rule specifying that `append_value` be appended to the existing value.
If the targeted cell is unset, it will be treated as containing the
empty string.
</summary>
</member>
<member name="F:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.IncrementAmountFieldNumber">
<summary>Field number for the "increment_amount" field.</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.IncrementAmount">
<summary>
Rule specifying that `increment_amount` be added to the existing value.
If the targeted cell is unset, it will be treated as containing a zero.
Otherwise, the targeted cell must contain an 8-byte value (interpreted
as a 64-bit big-endian signed integer), or the entire request will fail.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadModifyWriteRule.RuleOneofCase">
<summary>Enum of possible cases for the "rule" oneof.</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.Mutations">
<summary>
Static class with convenience methods for creating various kinds of <see cref="T:Google.Cloud.Bigtable.V2.Mutation"/> instances.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Mutations.DeleteFromColumn(System.String,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableVersionRange)">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.Mutation"/> which deletes cells from the specified column, optionally
restricting the deletions to a given version range.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>,
so <paramref name="columnQualifier"/> can be specified using a string as well and
its UTF-8 representations will be used.
</para>
</remarks>
<param name="familyName">
The name of the family from which cells should be deleted.
Must match `[-_.a-zA-Z0-9]+`
</param>
<param name="columnQualifier">
The qualifier of the column from which cells should be deleted.
Can be any byte string, including the empty string.
</param>
<param name="versionRange">
[Optional] The range of versions within which cells should be deleted.
If unspecified, all versions will be deleted.
</param>
<returns>The created Mutation instance.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Mutations.DeleteFromFamily(System.String)">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.Mutation"/> which deletes all cells from the specified column family.
</summary>
<param name="familyName">
The name of the family from which cells should be deleted.
Must match `[-_.a-zA-Z0-9]+`
</param>
<returns>The created Mutation instance.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Mutations.DeleteFromRow">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.Mutation"/> which deletes all cells from the containing row.
</summary>
<returns>The created Mutation instance.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.Mutations.SetCell(System.String,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString,System.Nullable{Google.Cloud.Bigtable.V2.BigtableVersion})">
<summary>
Creates a <see cref="T:Google.Cloud.Bigtable.V2.Mutation"/> which sets the value of the specified cell.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>,
so <paramref name="columnQualifier"/> or <paramref name="value"/> can be specified
using a string as well and its UTF-8 representations will be used.
</para>
</remarks>
<param name="familyName">
The name of the family into which new data should be written.
Must match `[-_.a-zA-Z0-9]+`
</param>
<param name="columnQualifier">
The qualifier of the column into which new data should be written.
Can be any byte string, including the empty string.
</param>
<param name="value">
The value to be written into the specified cell.
</param>
<param name="version">
[Optional] The version of the cell into which new data should be written.
If unspecified, the version will be initialized from the current UTC time.
</param>
<returns>The created Mutation instance.</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.ReadModifyWriteRules">
<summary>
Static class with convenience methods for creating various kinds of <see cref="T:Google.Cloud.Bigtable.V2.ReadModifyWriteRule"/> instances.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.ReadModifyWriteRules.Append(System.String,Google.Cloud.Bigtable.V2.BigtableByteString,Google.Cloud.Bigtable.V2.BigtableByteString)">
<summary>
Rule specifying that <paramref name="appendValue"/> be appended to the existing value.
If the targeted cell is unset, it will be treated as containing the empty string.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>,
so <paramref name="columnQualifier"/> can be specified using a string as well and
its UTF-8 representations will be used.
</para>
</remarks>
<param name="familyName">
The name of the family to which the read/modify/write should be applied.
Must match `[-_.a-zA-Z0-9]+`
</param>
<param name="columnQualifier">
The qualifier of the column to which the read/modify/write should be
applied. Can be any byte string, including the empty string.
</param>
<param name="appendValue">
The value to append to the existing cell value.
</param>
<returns>
The append value rule.
</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.ReadModifyWriteRules.Increment(System.String,Google.Cloud.Bigtable.V2.BigtableByteString,System.Int64)">
<summary>
Rule specifying that <paramref name="incrementAmount"/> be added to the existing value.
If the targeted cell is unset, it will be treated as containing a zero.
Otherwise, the targeted cell must contain an 8-byte value (interpreted
as a 64-bit big-endian signed integer), or the entire request will fail.
</summary>
<remarks>
<para>
Note that string is implicitly convertible to <see cref="T:Google.Cloud.Bigtable.V2.BigtableByteString"/>,
so <paramref name="columnQualifier"/> can be specified using a string as well and
its UTF-8 representations will be used.
</para>
</remarks>
<param name="familyName">
The name of the family to which the read/modify/write should be applied.
Must match `[-_.a-zA-Z0-9]+`
</param>
<param name="columnQualifier">
The qualifier of the column to which the read/modify/write should be
applied. Can be any byte string, including the empty string.
</param>
<param name="incrementAmount">
The amount to increment the existing cell value.
</param>
<returns>
The increment amount rule.
</returns>
</member>
<member name="T:Google.Cloud.Bigtable.V2.TableName">
<summary>
Resource name for the 'table' resource.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.Parse(System.String)">
<summary>
Parses the given table resource name in string form into a new
<see cref="T:Google.Cloud.Bigtable.V2.TableName"/> instance.
</summary>
<param name="tableName">The table resource name in string form. Must not be <c>null</c>.</param>
<returns>The parsed <see cref="T:Google.Cloud.Bigtable.V2.TableName"/> if successful.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.TryParse(System.String,Google.Cloud.Bigtable.V2.TableName@)">
<summary>
Tries to parse the given table resource name in string form into a new
<see cref="T:Google.Cloud.Bigtable.V2.TableName"/> instance.
</summary>
<remarks>
This method still throws <see cref="T:System.ArgumentNullException"/> if <paramref name="tableName"/> is null,
as this would usually indicate a programming error rather than a data error.
</remarks>
<param name="tableName">The table resource name in string form. Must not be <c>null</c>.</param>
<param name="result">When this method returns, the parsed <see cref="T:Google.Cloud.Bigtable.V2.TableName"/>,
or <c>null</c> if parsing fails.</param>
<returns><c>true</c> if the name was parsed succssfully; <c>false</c> otherwise.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.#ctor(System.String,System.String,System.String)">
<summary>
Constructs a new instance of the <see cref="T:Google.Cloud.Bigtable.V2.TableName"/> resource name class
from its component parts.
</summary>
<param name="projectId">The project ID. Must not be <c>null</c>.</param>
<param name="instanceId">The instance ID. Must not be <c>null</c>.</param>
<param name="tableId">The table ID. Must not be <c>null</c>.</param>
</member>
<member name="P:Google.Cloud.Bigtable.V2.TableName.ProjectId">
<summary>
The project ID. Never <c>null</c>.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.TableName.InstanceId">
<summary>
The instance ID. Never <c>null</c>.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.TableName.TableId">
<summary>
The table ID. Never <c>null</c>.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.TableName.Kind">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.ToString">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.GetHashCode">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.Equals(Google.Cloud.Bigtable.V2.TableName)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.op_Equality(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.TableName)">
<inheritdoc />
</member>
<member name="M:Google.Cloud.Bigtable.V2.TableName.op_Inequality(Google.Cloud.Bigtable.V2.TableName,Google.Cloud.Bigtable.V2.TableName)">
<inheritdoc />
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator">
<summary>
Asynchronous enumerator which merges cell chunks from the <see cref="T:Google.Cloud.Bigtable.V2.BigtableClient.ReadRowsStream"/> into
<see cref="T:Google.Cloud.Bigtable.V2.Row"/> instances.
</summary>
</member>
<member name="P:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.HadSplitCell">
<summary>
For testing purposes
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.RowMergeState">
<summary>
Base class for all of the state machine's internal states.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.NewRow">
<summary>
The default state when the state machine is awaiting a chunk to start a new row. It will update the current
cell info for the new row and delegate to <see cref="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.NewCell"/> to process the first cell.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.NewCell">
<summary>
A state that represents a cell boundary in a row.
Transitions back to <see cref="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.NewCell"/> if a processed chunk contains a full cell value or to
<see cref="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.CellInProgress"/> if it contains a partial value.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.CellInProgress">
<summary>
A state that represents a continuation value from the previous cell's value, which is incomplete.
Transitions to <see cref="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.NewCell"/> if a processed chunk completes the value or back to
<see cref="T:Google.Cloud.Bigtable.V2.RowAsyncEnumerator.CellInProgress"/> if it doesn't.
</summary>
</member>
<member name="T:Google.Cloud.Bigtable.V2.RowFilters">
<summary>
Static class with convenience methods for creating various kinds of <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instances.
</summary>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.BlockAllFilter">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which does not match any
cells, regardless of input. Useful for temporarily disabling just part of
a filter.
</summary>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.CellsPerColumnLimit(System.Int32)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only the most
recent N cells within each column.
</summary>
<remarks>
<para>
For example, if N=2, this filter would match column `foo:bar` at timestamps
10 and 9, skip all earlier cells in `foo:bar`, and then begin matching again
in column `foo:bar2`.
</para>
<para>
If duplicate cells are present, as is possible when using an Interleave,
each copy of the cell is counted separately.
</para>
</remarks>
<param name="limit">
The maximum number of cells allowed per column.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.CellsPerRowLimit(System.Int32)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only the first
N cells of each row.
</summary>
<remarks>
<para>
If duplicate cells are present, as is possible when using an Interleave,
each copy of the cell is counted separately.
</para>
</remarks>
<param name="limit">
The maximum number of cells allowed per row.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.CellsPerRowOffset(System.Int32)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which skips the first N cells
of each row, matching all subsequent cells.
</summary>
<remarks>
<para>
If duplicate cells are present, as is possible when using an Interleave,
each copy of the cell is counted separately.
</para>
</remarks>
<param name="offset">
The number of cells to skip per row.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.Chain(Google.Cloud.Bigtable.V2.RowFilter[])">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which sends rows through
several RowFilters in sequence.
</summary>
<param name="filters">
The elements of "filters" are chained together to process the input row:
in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row
The full chain is executed atomically. Must not be null, or contain null
elements.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.ColumnQualifierRegex(System.String)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells from
columns whose qualifiers satisfy the given RE2 regex.
</summary>
<remarks>
<para>
The format of RE2 is documented at https://github.com/google/re2/wiki/Syntax.
</para>
<para>
Note that, since column qualifiers can contain arbitrary bytes, the `\C`
escape sequence must be used if a true wildcard is desired. The `.`
character will not match the new line character `\n`, which may be
present in a binary qualifier.
</para>
</remarks>
<param name="regex">
The RE2 regex used to match column qualifiers.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.ColumnRange(Google.Cloud.Bigtable.V2.ColumnRange)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells from
columns within the given range.
</summary>
<param name="range">
The range of columns from which cells should be matched. Must not be null.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.Condition(Google.Cloud.Bigtable.V2.RowFilter,Google.Cloud.Bigtable.V2.RowFilter,Google.Cloud.Bigtable.V2.RowFilter)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which applies one of two
possible RowFilters to the data based on the output of a predicate
RowFilter.
</summary>
<param name="predicateFilter">
If <paramref name="predicateFilter"/> outputs any cells, then
<paramref name="trueFilter"/> will be evaluated on the input row.
Otherwise, <paramref name="falseFilter"/> will be evaluated.
Must not be null.
</param>
<param name="trueFilter">
The filter to apply to the input row if <paramref name="predicateFilter"/>
returns any results. If null, no results will be returned in the true case.
</param>
<param name="falseFilter">
The filter to apply to the input row if <paramref name="predicateFilter"/>
does not return any results. If null, no results will be returned in the
false case.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.FamilyNameRegex(System.String)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells
from columns whose families satisfy the given RE2 regex.
</summary>
<remarks>
<para>
For technical reasons, the regex must not contain the `:` character, even
if it is not being used as a literal. Note that, since column families
cannot contain the new line character `\n`, it is sufficient to use `.`
as a full wildcard when matching column family names.
</para>
</remarks>
<param name="regex">
The RE2 regex used to match column families. Must not be null.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.Interleave(Google.Cloud.Bigtable.V2.RowFilter[])">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which applies several
RowFilters to the data in parallel and combines the results.
</summary>
<param name="filters">
The filters to apply in parallel. Must not be null, or contain null elements.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.PassAllFilter">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches all cells,
regardless of input. Functionally equivalent to leaving `filter` unset,
but included for completeness.
</summary>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.RowKeyRegex(System.String)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells
from rows whose keys satisfy the given RE2 regex. In other words, passes
through the entire row when the key matches, and otherwise produces an
empty row.
</summary>
<remarks>
<para>
The format of RE2 is documented at https://github.com/google/re2/wiki/Syntax.
</para>
<para>
Note that, since row keys can contain arbitrary bytes, the `\C` escape
sequence must be used if a true wildcard is desired. The `.` character
will not match the new line character `\n`, which may be present in a
binary key.
</para>
</remarks>
<param name="regex">
The RE2 regex used to match row keys.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.RowSample(System.Double)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches all cells
from a row with probability p, and matches no cells from the row with
probability 1-p.
</summary>
<param name="probability">
The probability with which rows should be matched.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.StripValueTransformer">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which replaces each cell's
value with the empty string. This is useful for increasing performance when
only getting cell counts rather than cell values.
</summary>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.TimestampRange(System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells
with versions within the given range.
</summary>
<remarks>
<para>
Note: version values are stored on the server as if they are microseconds since the Unix epoch.
However, the server only supports millisecond granularity, so the server only allows microseconds
in multiples of 1,000. <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> attempts to hide this complexity by exposing
its underlying <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Value"/> in terms of milliseconds, so if desired, a
custom versioning scheme of 1, 2, ... can be used rather than 1000, 2000, ... However, access to
the underlying microsecond value is still provided via <see cref="P:Google.Cloud.Bigtable.V2.BigtableVersion.Micros"/>.
</para>
<para>
Note: when using ReadModifyWriteRow, modified columns automatically use a server version, which
is based on the current timestamp since the Unix epoch. For those columns, other reads and writes
should use <see cref="T:Google.Cloud.Bigtable.V2.BigtableVersion"/> values constructed from DateTime values, as opposed to
using a custom versioning scheme with 64-bit values.
</para>
</remarks>
<param name="startTimestamp">
Of the range of versions from which cells should be matched, inclusive lower bound timestamp
whose milliseconds since the Unix epoch should be used as the version value. If null, interpreted
as 0. It must be specified in UTC.
</param>
<param name="endTimestamp">
Of the range of versions from which cells should be matched, exclusive upper bound timestamp
whose milliseconds since the Unix epoch should be used as the version value. If null, interpreted
as infinity. It must be specified in UTC.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.ValueRange(Google.Cloud.Bigtable.V2.ValueRange)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells
with values that fall within the given range.
</summary>
<param name="range">
The range of values to match. Must not be null.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.ValueRegex(System.String)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells
with values that satisfy the given regular expression.
</summary>
<remarks>
<para>
The format of RE2 is documented at https://github.com/google/re2/wiki/Syntax.
</para>
<para>
Note that, since cell values can contain arbitrary bytes, the `\C` escape
sequence must be used if a true wildcard is desired. The `.` character
will not match the new line character `\n`, which may be present in a
binary value.
</para>
</remarks>
<param name="regex">
The RE2 regex used to match cell values.
</param>
<returns>The created row filter.</returns>
</member>
<member name="M:Google.Cloud.Bigtable.V2.RowFilters.VersionRange(Google.Cloud.Bigtable.V2.BigtableVersionRange)">
<summary>
Creates a new <see cref="T:Google.Cloud.Bigtable.V2.RowFilter"/> instance which matches only cells
with versions within the given range.
</summary>
<param name="range">
The range of versions from which cells should be matched. Must not be null.
</param>
<returns>The created row filter.</returns>
</member>
</members>
</doc>