google-cloud-bigtable 2.30.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. google/cloud/bigtable/__init__.py +25 -0
  2. google/cloud/bigtable/app_profile.py +377 -0
  3. google/cloud/bigtable/backup.py +490 -0
  4. google/cloud/bigtable/batcher.py +414 -0
  5. google/cloud/bigtable/client.py +475 -0
  6. google/cloud/bigtable/cluster.py +541 -0
  7. google/cloud/bigtable/column_family.py +362 -0
  8. google/cloud/bigtable/data/__init__.py +103 -0
  9. google/cloud/bigtable/data/_async/__init__.py +25 -0
  10. google/cloud/bigtable/data/_async/_mutate_rows.py +226 -0
  11. google/cloud/bigtable/data/_async/_read_rows.py +363 -0
  12. google/cloud/bigtable/data/_async/client.py +1522 -0
  13. google/cloud/bigtable/data/_async/mutations_batcher.py +534 -0
  14. google/cloud/bigtable/data/_cross_sync/__init__.py +20 -0
  15. google/cloud/bigtable/data/_cross_sync/_decorators.py +441 -0
  16. google/cloud/bigtable/data/_cross_sync/_mapping_meta.py +64 -0
  17. google/cloud/bigtable/data/_cross_sync/cross_sync.py +334 -0
  18. google/cloud/bigtable/data/_helpers.py +249 -0
  19. google/cloud/bigtable/data/_sync_autogen/_mutate_rows.py +182 -0
  20. google/cloud/bigtable/data/_sync_autogen/_read_rows.py +304 -0
  21. google/cloud/bigtable/data/_sync_autogen/client.py +1293 -0
  22. google/cloud/bigtable/data/_sync_autogen/mutations_batcher.py +449 -0
  23. google/cloud/bigtable/data/exceptions.py +340 -0
  24. google/cloud/bigtable/data/execute_query/__init__.py +43 -0
  25. google/cloud/bigtable/data/execute_query/_async/__init__.py +13 -0
  26. google/cloud/bigtable/data/execute_query/_async/execute_query_iterator.py +291 -0
  27. google/cloud/bigtable/data/execute_query/_byte_cursor.py +123 -0
  28. google/cloud/bigtable/data/execute_query/_checksum.py +43 -0
  29. google/cloud/bigtable/data/execute_query/_parameters_formatting.py +155 -0
  30. google/cloud/bigtable/data/execute_query/_query_result_parsing_utils.py +134 -0
  31. google/cloud/bigtable/data/execute_query/_reader.py +122 -0
  32. google/cloud/bigtable/data/execute_query/_sync_autogen/execute_query_iterator.py +239 -0
  33. google/cloud/bigtable/data/execute_query/metadata.py +399 -0
  34. google/cloud/bigtable/data/execute_query/values.py +123 -0
  35. google/cloud/bigtable/data/mutations.py +380 -0
  36. google/cloud/bigtable/data/read_modify_write_rules.py +112 -0
  37. google/cloud/bigtable/data/read_rows_query.py +536 -0
  38. google/cloud/bigtable/data/row.py +535 -0
  39. google/cloud/bigtable/data/row_filters.py +968 -0
  40. google/cloud/bigtable/encryption_info.py +64 -0
  41. google/cloud/bigtable/enums.py +223 -0
  42. google/cloud/bigtable/error.py +64 -0
  43. google/cloud/bigtable/gapic_version.py +16 -0
  44. google/cloud/bigtable/helpers.py +31 -0
  45. google/cloud/bigtable/instance.py +789 -0
  46. google/cloud/bigtable/policy.py +255 -0
  47. google/cloud/bigtable/row.py +1267 -0
  48. google/cloud/bigtable/row_data.py +380 -0
  49. google/cloud/bigtable/row_filters.py +838 -0
  50. google/cloud/bigtable/row_merger.py +250 -0
  51. google/cloud/bigtable/row_set.py +213 -0
  52. google/cloud/bigtable/table.py +1409 -0
  53. google/cloud/bigtable_admin/__init__.py +410 -0
  54. google/cloud/bigtable_admin/gapic_version.py +16 -0
  55. google/cloud/bigtable_admin/py.typed +2 -0
  56. google/cloud/bigtable_admin_v2/__init__.py +250 -0
  57. google/cloud/bigtable_admin_v2/gapic_metadata.json +962 -0
  58. google/cloud/bigtable_admin_v2/gapic_version.py +16 -0
  59. google/cloud/bigtable_admin_v2/py.typed +2 -0
  60. google/cloud/bigtable_admin_v2/services/__init__.py +15 -0
  61. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/__init__.py +22 -0
  62. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/async_client.py +3465 -0
  63. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/client.py +3944 -0
  64. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/pagers.py +681 -0
  65. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/__init__.py +40 -0
  66. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/base.py +751 -0
  67. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc.py +1249 -0
  68. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc_asyncio.py +1579 -0
  69. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest.py +6820 -0
  70. google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest_base.py +1746 -0
  71. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/__init__.py +22 -0
  72. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/async_client.py +3472 -0
  73. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/client.py +3949 -0
  74. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/pagers.py +669 -0
  75. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/__init__.py +40 -0
  76. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/base.py +708 -0
  77. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc.py +1257 -0
  78. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc_asyncio.py +1549 -0
  79. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest.py +6609 -0
  80. google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest_base.py +1714 -0
  81. google/cloud/bigtable_admin_v2/types/__init__.py +248 -0
  82. google/cloud/bigtable_admin_v2/types/bigtable_instance_admin.py +1364 -0
  83. google/cloud/bigtable_admin_v2/types/bigtable_table_admin.py +1715 -0
  84. google/cloud/bigtable_admin_v2/types/common.py +81 -0
  85. google/cloud/bigtable_admin_v2/types/instance.py +819 -0
  86. google/cloud/bigtable_admin_v2/types/table.py +1028 -0
  87. google/cloud/bigtable_admin_v2/types/types.py +776 -0
  88. google/cloud/bigtable_v2/__init__.py +136 -0
  89. google/cloud/bigtable_v2/gapic_metadata.json +193 -0
  90. google/cloud/bigtable_v2/gapic_version.py +16 -0
  91. google/cloud/bigtable_v2/py.typed +2 -0
  92. google/cloud/bigtable_v2/services/__init__.py +15 -0
  93. google/cloud/bigtable_v2/services/bigtable/__init__.py +22 -0
  94. google/cloud/bigtable_v2/services/bigtable/async_client.py +1741 -0
  95. google/cloud/bigtable_v2/services/bigtable/client.py +2194 -0
  96. google/cloud/bigtable_v2/services/bigtable/transports/__init__.py +38 -0
  97. google/cloud/bigtable_v2/services/bigtable/transports/base.py +343 -0
  98. google/cloud/bigtable_v2/services/bigtable/transports/grpc.py +660 -0
  99. google/cloud/bigtable_v2/services/bigtable/transports/grpc_asyncio.py +762 -0
  100. google/cloud/bigtable_v2/services/bigtable/transports/rest.py +2489 -0
  101. google/cloud/bigtable_v2/services/bigtable/transports/rest_base.py +711 -0
  102. google/cloud/bigtable_v2/types/__init__.py +138 -0
  103. google/cloud/bigtable_v2/types/bigtable.py +1531 -0
  104. google/cloud/bigtable_v2/types/data.py +1612 -0
  105. google/cloud/bigtable_v2/types/feature_flags.py +119 -0
  106. google/cloud/bigtable_v2/types/request_stats.py +171 -0
  107. google/cloud/bigtable_v2/types/response_params.py +64 -0
  108. google/cloud/bigtable_v2/types/types.py +579 -0
  109. google_cloud_bigtable-2.30.0.data/scripts/fixup_bigtable_admin_v2_keywords.py +233 -0
  110. google_cloud_bigtable-2.30.0.data/scripts/fixup_bigtable_v2_keywords.py +186 -0
  111. google_cloud_bigtable-2.30.0.dist-info/LICENSE +202 -0
  112. google_cloud_bigtable-2.30.0.dist-info/METADATA +154 -0
  113. google_cloud_bigtable-2.30.0.dist-info/RECORD +115 -0
  114. google_cloud_bigtable-2.30.0.dist-info/WHEEL +5 -0
  115. google_cloud_bigtable-2.30.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,962 @@
1
+ {
2
+ "comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
3
+ "language": "python",
4
+ "libraryPackage": "google.cloud.bigtable_admin_v2",
5
+ "protoPackage": "google.bigtable.admin.v2",
6
+ "schema": "1.0",
7
+ "services": {
8
+ "BigtableInstanceAdmin": {
9
+ "clients": {
10
+ "grpc": {
11
+ "libraryClient": "BigtableInstanceAdminClient",
12
+ "rpcs": {
13
+ "CreateAppProfile": {
14
+ "methods": [
15
+ "create_app_profile"
16
+ ]
17
+ },
18
+ "CreateCluster": {
19
+ "methods": [
20
+ "create_cluster"
21
+ ]
22
+ },
23
+ "CreateInstance": {
24
+ "methods": [
25
+ "create_instance"
26
+ ]
27
+ },
28
+ "CreateLogicalView": {
29
+ "methods": [
30
+ "create_logical_view"
31
+ ]
32
+ },
33
+ "CreateMaterializedView": {
34
+ "methods": [
35
+ "create_materialized_view"
36
+ ]
37
+ },
38
+ "DeleteAppProfile": {
39
+ "methods": [
40
+ "delete_app_profile"
41
+ ]
42
+ },
43
+ "DeleteCluster": {
44
+ "methods": [
45
+ "delete_cluster"
46
+ ]
47
+ },
48
+ "DeleteInstance": {
49
+ "methods": [
50
+ "delete_instance"
51
+ ]
52
+ },
53
+ "DeleteLogicalView": {
54
+ "methods": [
55
+ "delete_logical_view"
56
+ ]
57
+ },
58
+ "DeleteMaterializedView": {
59
+ "methods": [
60
+ "delete_materialized_view"
61
+ ]
62
+ },
63
+ "GetAppProfile": {
64
+ "methods": [
65
+ "get_app_profile"
66
+ ]
67
+ },
68
+ "GetCluster": {
69
+ "methods": [
70
+ "get_cluster"
71
+ ]
72
+ },
73
+ "GetIamPolicy": {
74
+ "methods": [
75
+ "get_iam_policy"
76
+ ]
77
+ },
78
+ "GetInstance": {
79
+ "methods": [
80
+ "get_instance"
81
+ ]
82
+ },
83
+ "GetLogicalView": {
84
+ "methods": [
85
+ "get_logical_view"
86
+ ]
87
+ },
88
+ "GetMaterializedView": {
89
+ "methods": [
90
+ "get_materialized_view"
91
+ ]
92
+ },
93
+ "ListAppProfiles": {
94
+ "methods": [
95
+ "list_app_profiles"
96
+ ]
97
+ },
98
+ "ListClusters": {
99
+ "methods": [
100
+ "list_clusters"
101
+ ]
102
+ },
103
+ "ListHotTablets": {
104
+ "methods": [
105
+ "list_hot_tablets"
106
+ ]
107
+ },
108
+ "ListInstances": {
109
+ "methods": [
110
+ "list_instances"
111
+ ]
112
+ },
113
+ "ListLogicalViews": {
114
+ "methods": [
115
+ "list_logical_views"
116
+ ]
117
+ },
118
+ "ListMaterializedViews": {
119
+ "methods": [
120
+ "list_materialized_views"
121
+ ]
122
+ },
123
+ "PartialUpdateCluster": {
124
+ "methods": [
125
+ "partial_update_cluster"
126
+ ]
127
+ },
128
+ "PartialUpdateInstance": {
129
+ "methods": [
130
+ "partial_update_instance"
131
+ ]
132
+ },
133
+ "SetIamPolicy": {
134
+ "methods": [
135
+ "set_iam_policy"
136
+ ]
137
+ },
138
+ "TestIamPermissions": {
139
+ "methods": [
140
+ "test_iam_permissions"
141
+ ]
142
+ },
143
+ "UpdateAppProfile": {
144
+ "methods": [
145
+ "update_app_profile"
146
+ ]
147
+ },
148
+ "UpdateCluster": {
149
+ "methods": [
150
+ "update_cluster"
151
+ ]
152
+ },
153
+ "UpdateInstance": {
154
+ "methods": [
155
+ "update_instance"
156
+ ]
157
+ },
158
+ "UpdateLogicalView": {
159
+ "methods": [
160
+ "update_logical_view"
161
+ ]
162
+ },
163
+ "UpdateMaterializedView": {
164
+ "methods": [
165
+ "update_materialized_view"
166
+ ]
167
+ }
168
+ }
169
+ },
170
+ "grpc-async": {
171
+ "libraryClient": "BigtableInstanceAdminAsyncClient",
172
+ "rpcs": {
173
+ "CreateAppProfile": {
174
+ "methods": [
175
+ "create_app_profile"
176
+ ]
177
+ },
178
+ "CreateCluster": {
179
+ "methods": [
180
+ "create_cluster"
181
+ ]
182
+ },
183
+ "CreateInstance": {
184
+ "methods": [
185
+ "create_instance"
186
+ ]
187
+ },
188
+ "CreateLogicalView": {
189
+ "methods": [
190
+ "create_logical_view"
191
+ ]
192
+ },
193
+ "CreateMaterializedView": {
194
+ "methods": [
195
+ "create_materialized_view"
196
+ ]
197
+ },
198
+ "DeleteAppProfile": {
199
+ "methods": [
200
+ "delete_app_profile"
201
+ ]
202
+ },
203
+ "DeleteCluster": {
204
+ "methods": [
205
+ "delete_cluster"
206
+ ]
207
+ },
208
+ "DeleteInstance": {
209
+ "methods": [
210
+ "delete_instance"
211
+ ]
212
+ },
213
+ "DeleteLogicalView": {
214
+ "methods": [
215
+ "delete_logical_view"
216
+ ]
217
+ },
218
+ "DeleteMaterializedView": {
219
+ "methods": [
220
+ "delete_materialized_view"
221
+ ]
222
+ },
223
+ "GetAppProfile": {
224
+ "methods": [
225
+ "get_app_profile"
226
+ ]
227
+ },
228
+ "GetCluster": {
229
+ "methods": [
230
+ "get_cluster"
231
+ ]
232
+ },
233
+ "GetIamPolicy": {
234
+ "methods": [
235
+ "get_iam_policy"
236
+ ]
237
+ },
238
+ "GetInstance": {
239
+ "methods": [
240
+ "get_instance"
241
+ ]
242
+ },
243
+ "GetLogicalView": {
244
+ "methods": [
245
+ "get_logical_view"
246
+ ]
247
+ },
248
+ "GetMaterializedView": {
249
+ "methods": [
250
+ "get_materialized_view"
251
+ ]
252
+ },
253
+ "ListAppProfiles": {
254
+ "methods": [
255
+ "list_app_profiles"
256
+ ]
257
+ },
258
+ "ListClusters": {
259
+ "methods": [
260
+ "list_clusters"
261
+ ]
262
+ },
263
+ "ListHotTablets": {
264
+ "methods": [
265
+ "list_hot_tablets"
266
+ ]
267
+ },
268
+ "ListInstances": {
269
+ "methods": [
270
+ "list_instances"
271
+ ]
272
+ },
273
+ "ListLogicalViews": {
274
+ "methods": [
275
+ "list_logical_views"
276
+ ]
277
+ },
278
+ "ListMaterializedViews": {
279
+ "methods": [
280
+ "list_materialized_views"
281
+ ]
282
+ },
283
+ "PartialUpdateCluster": {
284
+ "methods": [
285
+ "partial_update_cluster"
286
+ ]
287
+ },
288
+ "PartialUpdateInstance": {
289
+ "methods": [
290
+ "partial_update_instance"
291
+ ]
292
+ },
293
+ "SetIamPolicy": {
294
+ "methods": [
295
+ "set_iam_policy"
296
+ ]
297
+ },
298
+ "TestIamPermissions": {
299
+ "methods": [
300
+ "test_iam_permissions"
301
+ ]
302
+ },
303
+ "UpdateAppProfile": {
304
+ "methods": [
305
+ "update_app_profile"
306
+ ]
307
+ },
308
+ "UpdateCluster": {
309
+ "methods": [
310
+ "update_cluster"
311
+ ]
312
+ },
313
+ "UpdateInstance": {
314
+ "methods": [
315
+ "update_instance"
316
+ ]
317
+ },
318
+ "UpdateLogicalView": {
319
+ "methods": [
320
+ "update_logical_view"
321
+ ]
322
+ },
323
+ "UpdateMaterializedView": {
324
+ "methods": [
325
+ "update_materialized_view"
326
+ ]
327
+ }
328
+ }
329
+ },
330
+ "rest": {
331
+ "libraryClient": "BigtableInstanceAdminClient",
332
+ "rpcs": {
333
+ "CreateAppProfile": {
334
+ "methods": [
335
+ "create_app_profile"
336
+ ]
337
+ },
338
+ "CreateCluster": {
339
+ "methods": [
340
+ "create_cluster"
341
+ ]
342
+ },
343
+ "CreateInstance": {
344
+ "methods": [
345
+ "create_instance"
346
+ ]
347
+ },
348
+ "CreateLogicalView": {
349
+ "methods": [
350
+ "create_logical_view"
351
+ ]
352
+ },
353
+ "CreateMaterializedView": {
354
+ "methods": [
355
+ "create_materialized_view"
356
+ ]
357
+ },
358
+ "DeleteAppProfile": {
359
+ "methods": [
360
+ "delete_app_profile"
361
+ ]
362
+ },
363
+ "DeleteCluster": {
364
+ "methods": [
365
+ "delete_cluster"
366
+ ]
367
+ },
368
+ "DeleteInstance": {
369
+ "methods": [
370
+ "delete_instance"
371
+ ]
372
+ },
373
+ "DeleteLogicalView": {
374
+ "methods": [
375
+ "delete_logical_view"
376
+ ]
377
+ },
378
+ "DeleteMaterializedView": {
379
+ "methods": [
380
+ "delete_materialized_view"
381
+ ]
382
+ },
383
+ "GetAppProfile": {
384
+ "methods": [
385
+ "get_app_profile"
386
+ ]
387
+ },
388
+ "GetCluster": {
389
+ "methods": [
390
+ "get_cluster"
391
+ ]
392
+ },
393
+ "GetIamPolicy": {
394
+ "methods": [
395
+ "get_iam_policy"
396
+ ]
397
+ },
398
+ "GetInstance": {
399
+ "methods": [
400
+ "get_instance"
401
+ ]
402
+ },
403
+ "GetLogicalView": {
404
+ "methods": [
405
+ "get_logical_view"
406
+ ]
407
+ },
408
+ "GetMaterializedView": {
409
+ "methods": [
410
+ "get_materialized_view"
411
+ ]
412
+ },
413
+ "ListAppProfiles": {
414
+ "methods": [
415
+ "list_app_profiles"
416
+ ]
417
+ },
418
+ "ListClusters": {
419
+ "methods": [
420
+ "list_clusters"
421
+ ]
422
+ },
423
+ "ListHotTablets": {
424
+ "methods": [
425
+ "list_hot_tablets"
426
+ ]
427
+ },
428
+ "ListInstances": {
429
+ "methods": [
430
+ "list_instances"
431
+ ]
432
+ },
433
+ "ListLogicalViews": {
434
+ "methods": [
435
+ "list_logical_views"
436
+ ]
437
+ },
438
+ "ListMaterializedViews": {
439
+ "methods": [
440
+ "list_materialized_views"
441
+ ]
442
+ },
443
+ "PartialUpdateCluster": {
444
+ "methods": [
445
+ "partial_update_cluster"
446
+ ]
447
+ },
448
+ "PartialUpdateInstance": {
449
+ "methods": [
450
+ "partial_update_instance"
451
+ ]
452
+ },
453
+ "SetIamPolicy": {
454
+ "methods": [
455
+ "set_iam_policy"
456
+ ]
457
+ },
458
+ "TestIamPermissions": {
459
+ "methods": [
460
+ "test_iam_permissions"
461
+ ]
462
+ },
463
+ "UpdateAppProfile": {
464
+ "methods": [
465
+ "update_app_profile"
466
+ ]
467
+ },
468
+ "UpdateCluster": {
469
+ "methods": [
470
+ "update_cluster"
471
+ ]
472
+ },
473
+ "UpdateInstance": {
474
+ "methods": [
475
+ "update_instance"
476
+ ]
477
+ },
478
+ "UpdateLogicalView": {
479
+ "methods": [
480
+ "update_logical_view"
481
+ ]
482
+ },
483
+ "UpdateMaterializedView": {
484
+ "methods": [
485
+ "update_materialized_view"
486
+ ]
487
+ }
488
+ }
489
+ }
490
+ }
491
+ },
492
+ "BigtableTableAdmin": {
493
+ "clients": {
494
+ "grpc": {
495
+ "libraryClient": "BigtableTableAdminClient",
496
+ "rpcs": {
497
+ "CheckConsistency": {
498
+ "methods": [
499
+ "check_consistency"
500
+ ]
501
+ },
502
+ "CopyBackup": {
503
+ "methods": [
504
+ "copy_backup"
505
+ ]
506
+ },
507
+ "CreateAuthorizedView": {
508
+ "methods": [
509
+ "create_authorized_view"
510
+ ]
511
+ },
512
+ "CreateBackup": {
513
+ "methods": [
514
+ "create_backup"
515
+ ]
516
+ },
517
+ "CreateTable": {
518
+ "methods": [
519
+ "create_table"
520
+ ]
521
+ },
522
+ "CreateTableFromSnapshot": {
523
+ "methods": [
524
+ "create_table_from_snapshot"
525
+ ]
526
+ },
527
+ "DeleteAuthorizedView": {
528
+ "methods": [
529
+ "delete_authorized_view"
530
+ ]
531
+ },
532
+ "DeleteBackup": {
533
+ "methods": [
534
+ "delete_backup"
535
+ ]
536
+ },
537
+ "DeleteSnapshot": {
538
+ "methods": [
539
+ "delete_snapshot"
540
+ ]
541
+ },
542
+ "DeleteTable": {
543
+ "methods": [
544
+ "delete_table"
545
+ ]
546
+ },
547
+ "DropRowRange": {
548
+ "methods": [
549
+ "drop_row_range"
550
+ ]
551
+ },
552
+ "GenerateConsistencyToken": {
553
+ "methods": [
554
+ "generate_consistency_token"
555
+ ]
556
+ },
557
+ "GetAuthorizedView": {
558
+ "methods": [
559
+ "get_authorized_view"
560
+ ]
561
+ },
562
+ "GetBackup": {
563
+ "methods": [
564
+ "get_backup"
565
+ ]
566
+ },
567
+ "GetIamPolicy": {
568
+ "methods": [
569
+ "get_iam_policy"
570
+ ]
571
+ },
572
+ "GetSnapshot": {
573
+ "methods": [
574
+ "get_snapshot"
575
+ ]
576
+ },
577
+ "GetTable": {
578
+ "methods": [
579
+ "get_table"
580
+ ]
581
+ },
582
+ "ListAuthorizedViews": {
583
+ "methods": [
584
+ "list_authorized_views"
585
+ ]
586
+ },
587
+ "ListBackups": {
588
+ "methods": [
589
+ "list_backups"
590
+ ]
591
+ },
592
+ "ListSnapshots": {
593
+ "methods": [
594
+ "list_snapshots"
595
+ ]
596
+ },
597
+ "ListTables": {
598
+ "methods": [
599
+ "list_tables"
600
+ ]
601
+ },
602
+ "ModifyColumnFamilies": {
603
+ "methods": [
604
+ "modify_column_families"
605
+ ]
606
+ },
607
+ "RestoreTable": {
608
+ "methods": [
609
+ "restore_table"
610
+ ]
611
+ },
612
+ "SetIamPolicy": {
613
+ "methods": [
614
+ "set_iam_policy"
615
+ ]
616
+ },
617
+ "SnapshotTable": {
618
+ "methods": [
619
+ "snapshot_table"
620
+ ]
621
+ },
622
+ "TestIamPermissions": {
623
+ "methods": [
624
+ "test_iam_permissions"
625
+ ]
626
+ },
627
+ "UndeleteTable": {
628
+ "methods": [
629
+ "undelete_table"
630
+ ]
631
+ },
632
+ "UpdateAuthorizedView": {
633
+ "methods": [
634
+ "update_authorized_view"
635
+ ]
636
+ },
637
+ "UpdateBackup": {
638
+ "methods": [
639
+ "update_backup"
640
+ ]
641
+ },
642
+ "UpdateTable": {
643
+ "methods": [
644
+ "update_table"
645
+ ]
646
+ }
647
+ }
648
+ },
649
+ "grpc-async": {
650
+ "libraryClient": "BigtableTableAdminAsyncClient",
651
+ "rpcs": {
652
+ "CheckConsistency": {
653
+ "methods": [
654
+ "check_consistency"
655
+ ]
656
+ },
657
+ "CopyBackup": {
658
+ "methods": [
659
+ "copy_backup"
660
+ ]
661
+ },
662
+ "CreateAuthorizedView": {
663
+ "methods": [
664
+ "create_authorized_view"
665
+ ]
666
+ },
667
+ "CreateBackup": {
668
+ "methods": [
669
+ "create_backup"
670
+ ]
671
+ },
672
+ "CreateTable": {
673
+ "methods": [
674
+ "create_table"
675
+ ]
676
+ },
677
+ "CreateTableFromSnapshot": {
678
+ "methods": [
679
+ "create_table_from_snapshot"
680
+ ]
681
+ },
682
+ "DeleteAuthorizedView": {
683
+ "methods": [
684
+ "delete_authorized_view"
685
+ ]
686
+ },
687
+ "DeleteBackup": {
688
+ "methods": [
689
+ "delete_backup"
690
+ ]
691
+ },
692
+ "DeleteSnapshot": {
693
+ "methods": [
694
+ "delete_snapshot"
695
+ ]
696
+ },
697
+ "DeleteTable": {
698
+ "methods": [
699
+ "delete_table"
700
+ ]
701
+ },
702
+ "DropRowRange": {
703
+ "methods": [
704
+ "drop_row_range"
705
+ ]
706
+ },
707
+ "GenerateConsistencyToken": {
708
+ "methods": [
709
+ "generate_consistency_token"
710
+ ]
711
+ },
712
+ "GetAuthorizedView": {
713
+ "methods": [
714
+ "get_authorized_view"
715
+ ]
716
+ },
717
+ "GetBackup": {
718
+ "methods": [
719
+ "get_backup"
720
+ ]
721
+ },
722
+ "GetIamPolicy": {
723
+ "methods": [
724
+ "get_iam_policy"
725
+ ]
726
+ },
727
+ "GetSnapshot": {
728
+ "methods": [
729
+ "get_snapshot"
730
+ ]
731
+ },
732
+ "GetTable": {
733
+ "methods": [
734
+ "get_table"
735
+ ]
736
+ },
737
+ "ListAuthorizedViews": {
738
+ "methods": [
739
+ "list_authorized_views"
740
+ ]
741
+ },
742
+ "ListBackups": {
743
+ "methods": [
744
+ "list_backups"
745
+ ]
746
+ },
747
+ "ListSnapshots": {
748
+ "methods": [
749
+ "list_snapshots"
750
+ ]
751
+ },
752
+ "ListTables": {
753
+ "methods": [
754
+ "list_tables"
755
+ ]
756
+ },
757
+ "ModifyColumnFamilies": {
758
+ "methods": [
759
+ "modify_column_families"
760
+ ]
761
+ },
762
+ "RestoreTable": {
763
+ "methods": [
764
+ "restore_table"
765
+ ]
766
+ },
767
+ "SetIamPolicy": {
768
+ "methods": [
769
+ "set_iam_policy"
770
+ ]
771
+ },
772
+ "SnapshotTable": {
773
+ "methods": [
774
+ "snapshot_table"
775
+ ]
776
+ },
777
+ "TestIamPermissions": {
778
+ "methods": [
779
+ "test_iam_permissions"
780
+ ]
781
+ },
782
+ "UndeleteTable": {
783
+ "methods": [
784
+ "undelete_table"
785
+ ]
786
+ },
787
+ "UpdateAuthorizedView": {
788
+ "methods": [
789
+ "update_authorized_view"
790
+ ]
791
+ },
792
+ "UpdateBackup": {
793
+ "methods": [
794
+ "update_backup"
795
+ ]
796
+ },
797
+ "UpdateTable": {
798
+ "methods": [
799
+ "update_table"
800
+ ]
801
+ }
802
+ }
803
+ },
804
+ "rest": {
805
+ "libraryClient": "BigtableTableAdminClient",
806
+ "rpcs": {
807
+ "CheckConsistency": {
808
+ "methods": [
809
+ "check_consistency"
810
+ ]
811
+ },
812
+ "CopyBackup": {
813
+ "methods": [
814
+ "copy_backup"
815
+ ]
816
+ },
817
+ "CreateAuthorizedView": {
818
+ "methods": [
819
+ "create_authorized_view"
820
+ ]
821
+ },
822
+ "CreateBackup": {
823
+ "methods": [
824
+ "create_backup"
825
+ ]
826
+ },
827
+ "CreateTable": {
828
+ "methods": [
829
+ "create_table"
830
+ ]
831
+ },
832
+ "CreateTableFromSnapshot": {
833
+ "methods": [
834
+ "create_table_from_snapshot"
835
+ ]
836
+ },
837
+ "DeleteAuthorizedView": {
838
+ "methods": [
839
+ "delete_authorized_view"
840
+ ]
841
+ },
842
+ "DeleteBackup": {
843
+ "methods": [
844
+ "delete_backup"
845
+ ]
846
+ },
847
+ "DeleteSnapshot": {
848
+ "methods": [
849
+ "delete_snapshot"
850
+ ]
851
+ },
852
+ "DeleteTable": {
853
+ "methods": [
854
+ "delete_table"
855
+ ]
856
+ },
857
+ "DropRowRange": {
858
+ "methods": [
859
+ "drop_row_range"
860
+ ]
861
+ },
862
+ "GenerateConsistencyToken": {
863
+ "methods": [
864
+ "generate_consistency_token"
865
+ ]
866
+ },
867
+ "GetAuthorizedView": {
868
+ "methods": [
869
+ "get_authorized_view"
870
+ ]
871
+ },
872
+ "GetBackup": {
873
+ "methods": [
874
+ "get_backup"
875
+ ]
876
+ },
877
+ "GetIamPolicy": {
878
+ "methods": [
879
+ "get_iam_policy"
880
+ ]
881
+ },
882
+ "GetSnapshot": {
883
+ "methods": [
884
+ "get_snapshot"
885
+ ]
886
+ },
887
+ "GetTable": {
888
+ "methods": [
889
+ "get_table"
890
+ ]
891
+ },
892
+ "ListAuthorizedViews": {
893
+ "methods": [
894
+ "list_authorized_views"
895
+ ]
896
+ },
897
+ "ListBackups": {
898
+ "methods": [
899
+ "list_backups"
900
+ ]
901
+ },
902
+ "ListSnapshots": {
903
+ "methods": [
904
+ "list_snapshots"
905
+ ]
906
+ },
907
+ "ListTables": {
908
+ "methods": [
909
+ "list_tables"
910
+ ]
911
+ },
912
+ "ModifyColumnFamilies": {
913
+ "methods": [
914
+ "modify_column_families"
915
+ ]
916
+ },
917
+ "RestoreTable": {
918
+ "methods": [
919
+ "restore_table"
920
+ ]
921
+ },
922
+ "SetIamPolicy": {
923
+ "methods": [
924
+ "set_iam_policy"
925
+ ]
926
+ },
927
+ "SnapshotTable": {
928
+ "methods": [
929
+ "snapshot_table"
930
+ ]
931
+ },
932
+ "TestIamPermissions": {
933
+ "methods": [
934
+ "test_iam_permissions"
935
+ ]
936
+ },
937
+ "UndeleteTable": {
938
+ "methods": [
939
+ "undelete_table"
940
+ ]
941
+ },
942
+ "UpdateAuthorizedView": {
943
+ "methods": [
944
+ "update_authorized_view"
945
+ ]
946
+ },
947
+ "UpdateBackup": {
948
+ "methods": [
949
+ "update_backup"
950
+ ]
951
+ },
952
+ "UpdateTable": {
953
+ "methods": [
954
+ "update_table"
955
+ ]
956
+ }
957
+ }
958
+ }
959
+ }
960
+ }
961
+ }
962
+ }