forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigtable_table_admin_client.h
909 lines (862 loc) · 41.1 KB
/
bigtable_table_admin_client.h
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
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Generated by the Codegen C++ plugin.
// If you make any local changes, they will be lost.
// source: google/bigtable/admin/v2/bigtable_table_admin.proto
#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_BIGTABLE_ADMIN_BIGTABLE_TABLE_ADMIN_CLIENT_H
#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_BIGTABLE_ADMIN_BIGTABLE_TABLE_ADMIN_CLIENT_H
#include "google/cloud/bigtable/admin/bigtable_table_admin_connection.h"
#include "google/cloud/future.h"
#include "google/cloud/iam_updater.h"
#include "google/cloud/options.h"
#include "google/cloud/polling_policy.h"
#include "google/cloud/status_or.h"
#include "google/cloud/version.h"
#include <google/longrunning/operations.grpc.pb.h>
#include <map>
#include <memory>
namespace google {
namespace cloud {
namespace bigtable_admin {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
///
/// Service for creating, configuring, and deleting Cloud Bigtable tables.
///
///
/// Provides access to the table schemas only, not the data stored within
/// the tables.
///
/// @par Equality
///
/// Instances of this class created via copy-construction or copy-assignment
/// always compare equal. Instances created with equal
/// `std::shared_ptr<*Connection>` objects compare equal. Objects that compare
/// equal share the same underlying resources.
///
/// @par Performance
///
/// Creating a new instance of this class is a relatively expensive operation,
/// new objects establish new connections to the service. In contrast,
/// copy-construction, move-construction, and the corresponding assignment
/// operations are relatively efficient as the copies share all underlying
/// resources.
///
/// @par Thread Safety
///
/// Concurrent access to different instances of this class, even if they compare
/// equal, is guaranteed to work. Two or more threads operating on the same
/// instance of this class is not guaranteed to work. Since copy-construction
/// and move-construction is a relatively efficient operation, consider using
/// such a copy when using this class from multiple threads.
///
class BigtableTableAdminClient {
public:
explicit BigtableTableAdminClient(
std::shared_ptr<BigtableTableAdminConnection> connection,
Options opts = {});
~BigtableTableAdminClient();
//@{
// @name Copy and move support
BigtableTableAdminClient(BigtableTableAdminClient const&) = default;
BigtableTableAdminClient& operator=(BigtableTableAdminClient const&) =
default;
BigtableTableAdminClient(BigtableTableAdminClient&&) = default;
BigtableTableAdminClient& operator=(BigtableTableAdminClient&&) = default;
//@}
//@{
// @name Equality
friend bool operator==(BigtableTableAdminClient const& a,
BigtableTableAdminClient const& b) {
return a.connection_ == b.connection_;
}
friend bool operator!=(BigtableTableAdminClient const& a,
BigtableTableAdminClient const& b) {
return !(a == b);
}
//@}
///
/// Creates a new table in the specified instance.
/// The table can be created with a full set of initial column families,
/// specified in the request.
///
/// @param parent Required. The unique name of the instance in which to
/// create the table.
/// Values are of the form `projects/{project}/instances/{instance}`.
/// @param table_id Required. The name by which the new table should be
/// referred to within the parent
/// instance, e.g., `foobar` rather than `{parent}/tables/foobar`.
/// Maximum 50 characters.
/// @param table Required. The Table to create.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.CreateTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L421}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StatusOr<google::bigtable::admin::v2::Table> CreateTable(
std::string const& parent, std::string const& table_id,
google::bigtable::admin::v2::Table const& table, Options opts = {});
///
/// Creates a new table in the specified instance.
/// The table can be created with a full set of initial column families,
/// specified in the request.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::CreateTableRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L421}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.CreateTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L421}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StatusOr<google::bigtable::admin::v2::Table> CreateTable(
google::bigtable::admin::v2::CreateTableRequest const& request,
Options opts = {});
///
/// Lists all tables served from a specified instance.
///
/// @param parent Required. The unique name of the instance for which tables
/// should be listed.
/// Values are of the form `projects/{project}/instances/{instance}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.ListTablesRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L523}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StreamRange<google::bigtable::admin::v2::Table> ListTables(
std::string const& parent, Options opts = {});
///
/// Lists all tables served from a specified instance.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::ListTablesRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L523}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.ListTablesRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L523}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StreamRange<google::bigtable::admin::v2::Table> ListTables(
google::bigtable::admin::v2::ListTablesRequest request,
Options opts = {});
///
/// Gets metadata information about the specified table.
///
/// @param name Required. The unique name of the requested table.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.GetTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L566}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StatusOr<google::bigtable::admin::v2::Table> GetTable(std::string const& name,
Options opts = {});
///
/// Gets metadata information about the specified table.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::GetTableRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L566}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.GetTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L566}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StatusOr<google::bigtable::admin::v2::Table> GetTable(
google::bigtable::admin::v2::GetTableRequest const& request,
Options opts = {});
///
/// Permanently deletes a specified table and all of its data.
///
/// @param name Required. The unique name of the table to be deleted.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
///
/// [google.bigtable.admin.v2.DeleteTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L584}
///
Status DeleteTable(std::string const& name, Options opts = {});
///
/// Permanently deletes a specified table and all of its data.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::DeleteTableRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L584}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
///
/// [google.bigtable.admin.v2.DeleteTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L584}
///
Status DeleteTable(
google::bigtable::admin::v2::DeleteTableRequest const& request,
Options opts = {});
///
/// Restores a specified table which was accidentally deleted.
///
/// @param name Required. The unique name of the table to be restored.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.UndeleteTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L598}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
future<StatusOr<google::bigtable::admin::v2::Table>> UndeleteTable(
std::string const& name, Options opts = {});
///
/// Restores a specified table which was accidentally deleted.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::UndeleteTableRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L598}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.UndeleteTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L598}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
future<StatusOr<google::bigtable::admin::v2::Table>> UndeleteTable(
google::bigtable::admin::v2::UndeleteTableRequest const& request,
Options opts = {});
///
/// Performs a series of column family modifications on the specified table.
/// Either all or none of the modifications will occur before this method
/// returns, but data requests received prior to that point may see a table
/// where only some modifications have taken effect.
///
/// @param name Required. The unique name of the table whose families should
/// be modified.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param modifications Required. Modifications to be atomically applied to
/// the specified table's families.
/// Entries are applied in order, meaning that earlier modifications can be
/// masked by later ones (in the case of repeated updates to the same family,
/// for example).
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.ModifyColumnFamiliesRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L625}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StatusOr<google::bigtable::admin::v2::Table> ModifyColumnFamilies(
std::string const& name,
std::vector<google::bigtable::admin::v2::ModifyColumnFamiliesRequest::
Modification> const& modifications,
Options opts = {});
///
/// Performs a series of column family modifications on the specified table.
/// Either all or none of the modifications will occur before this method
/// returns, but data requests received prior to that point may see a table
/// where only some modifications have taken effect.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::ModifyColumnFamiliesRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L625}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.ModifyColumnFamiliesRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L625}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
StatusOr<google::bigtable::admin::v2::Table> ModifyColumnFamilies(
google::bigtable::admin::v2::ModifyColumnFamiliesRequest const& request,
Options opts = {});
///
/// Permanently drop/delete a row range from a specified table. The request
/// can specify whether to delete all rows in a table, or only those that
/// match a particular prefix.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::DropRowRangeRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L499}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
///
/// [google.bigtable.admin.v2.DropRowRangeRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L499}
///
Status DropRowRange(
google::bigtable::admin::v2::DropRowRangeRequest const& request,
Options opts = {});
///
/// Generates a consistency token for a Table, which can be used in
/// CheckConsistency to check whether mutations to the table that finished
/// before this call started have been replicated. The tokens will be
/// available for 90 days.
///
/// @param name Required. The unique name of the Table for which to create a
/// consistency token.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::GenerateConsistencyTokenResponse,google/bigtable/admin/v2/bigtable_table_admin.proto#L680}
///
/// [google.bigtable.admin.v2.GenerateConsistencyTokenRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L666}
/// [google.bigtable.admin.v2.GenerateConsistencyTokenResponse]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L680}
///
StatusOr<google::bigtable::admin::v2::GenerateConsistencyTokenResponse>
GenerateConsistencyToken(std::string const& name, Options opts = {});
///
/// Generates a consistency token for a Table, which can be used in
/// CheckConsistency to check whether mutations to the table that finished
/// before this call started have been replicated. The tokens will be
/// available for 90 days.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::GenerateConsistencyTokenRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L666}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::GenerateConsistencyTokenResponse,google/bigtable/admin/v2/bigtable_table_admin.proto#L680}
///
/// [google.bigtable.admin.v2.GenerateConsistencyTokenRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L666}
/// [google.bigtable.admin.v2.GenerateConsistencyTokenResponse]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L680}
///
StatusOr<google::bigtable::admin::v2::GenerateConsistencyTokenResponse>
GenerateConsistencyToken(
google::bigtable::admin::v2::GenerateConsistencyTokenRequest const&
request,
Options opts = {});
///
/// Checks replication consistency based on a consistency token, that is, if
/// replication has caught up based on the conditions specified in the token
/// and the check request.
///
/// @param name Required. The unique name of the Table for which to check
/// replication consistency.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param consistency_token Required. The token created using
/// GenerateConsistencyToken for the Table.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::CheckConsistencyResponse,google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
/// [google.bigtable.admin.v2.CheckConsistencyRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L687}
/// [google.bigtable.admin.v2.CheckConsistencyResponse]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
StatusOr<google::bigtable::admin::v2::CheckConsistencyResponse>
CheckConsistency(std::string const& name,
std::string const& consistency_token, Options opts = {});
///
/// Checks replication consistency based on a consistency token, that is, if
/// replication has caught up based on the conditions specified in the token
/// and the check request.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::CheckConsistencyRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L687}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::CheckConsistencyResponse,google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
/// [google.bigtable.admin.v2.CheckConsistencyRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L687}
/// [google.bigtable.admin.v2.CheckConsistencyResponse]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
StatusOr<google::bigtable::admin::v2::CheckConsistencyResponse>
CheckConsistency(
google::bigtable::admin::v2::CheckConsistencyRequest const& request,
Options opts = {});
///
/// Starts creating a new Cloud Bigtable Backup. The returned backup
/// [long-running operation][google.longrunning.Operation] can be used to
/// track creation of the backup. The
/// [metadata][google.longrunning.Operation.metadata] field type is
/// [CreateBackupMetadata][google.bigtable.admin.v2.CreateBackupMetadata]. The
/// [response][google.longrunning.Operation.response] field type is
/// [Backup][google.bigtable.admin.v2.Backup], if successful. Cancelling the
/// returned operation will stop the creation and delete the backup.
///
/// @param parent Required. This must be one of the clusters in the instance
/// in which this
/// table is located. The backup will be stored in this cluster. Values are
/// of the form `projects/{project}/instances/{instance}/clusters/{cluster}`.
/// @param backup_id Required. The id of the backup to be created. The
/// `backup_id` along with
/// the parent `parent` are combined as {parent}/backups/{backup_id} to
/// create the full backup name, of the form:
/// `projects/{project}/instances/{instance}/clusters/{cluster}/backups/{backup_id}`.
/// This string must be between 1 and 50 characters in length and match the
/// regex [_a-zA-Z0-9][-_.a-zA-Z0-9]*.
/// @param backup Required. The backup to create.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.CreateBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L873}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
future<StatusOr<google::bigtable::admin::v2::Backup>> CreateBackup(
std::string const& parent, std::string const& backup_id,
google::bigtable::admin::v2::Backup const& backup, Options opts = {});
///
/// Starts creating a new Cloud Bigtable Backup. The returned backup
/// [long-running operation][google.longrunning.Operation] can be used to
/// track creation of the backup. The
/// [metadata][google.longrunning.Operation.metadata] field type is
/// [CreateBackupMetadata][google.bigtable.admin.v2.CreateBackupMetadata]. The
/// [response][google.longrunning.Operation.response] field type is
/// [Backup][google.bigtable.admin.v2.Backup], if successful. Cancelling the
/// returned operation will stop the creation and delete the backup.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::CreateBackupRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L873}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.CreateBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L873}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
future<StatusOr<google::bigtable::admin::v2::Backup>> CreateBackup(
google::bigtable::admin::v2::CreateBackupRequest const& request,
Options opts = {});
///
/// Gets metadata on a pending or completed Cloud Bigtable Backup.
///
/// @param name Required. Name of the backup.
/// Values are of the form
/// `projects/{project}/instances/{instance}/clusters/{cluster}/backups/{backup}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.GetBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L929}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
StatusOr<google::bigtable::admin::v2::Backup> GetBackup(
std::string const& name, Options opts = {});
///
/// Gets metadata on a pending or completed Cloud Bigtable Backup.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::GetBackupRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L929}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.GetBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L929}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
StatusOr<google::bigtable::admin::v2::Backup> GetBackup(
google::bigtable::admin::v2::GetBackupRequest const& request,
Options opts = {});
///
/// Updates a pending or completed Cloud Bigtable Backup.
///
/// @param backup Required. The backup to update. `backup.name`, and the
/// fields to be updated
/// as specified by `update_mask` are required. Other fields are ignored.
/// Update is only supported for the following fields:
/// * `backup.expire_time`.
/// @param update_mask Required. A mask specifying which fields (e.g.
/// `expire_time`) in the
/// Backup resource should be updated. This mask is relative to the Backup
/// resource, not to the request message. The field mask must always be
/// specified; this prevents any future fields from being erased accidentally
/// by clients that do not know about them.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.UpdateBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L913}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
StatusOr<google::bigtable::admin::v2::Backup> UpdateBackup(
google::bigtable::admin::v2::Backup const& backup,
google::protobuf::FieldMask const& update_mask, Options opts = {});
///
/// Updates a pending or completed Cloud Bigtable Backup.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::UpdateBackupRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L913}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.UpdateBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L913}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
StatusOr<google::bigtable::admin::v2::Backup> UpdateBackup(
google::bigtable::admin::v2::UpdateBackupRequest const& request,
Options opts = {});
///
/// Deletes a pending or completed Cloud Bigtable backup.
///
/// @param name Required. Name of the backup to delete.
/// Values are of the form
/// `projects/{project}/instances/{instance}/clusters/{cluster}/backups/{backup}`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
///
/// [google.bigtable.admin.v2.DeleteBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L942}
///
Status DeleteBackup(std::string const& name, Options opts = {});
///
/// Deletes a pending or completed Cloud Bigtable backup.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::DeleteBackupRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L942}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
///
/// [google.bigtable.admin.v2.DeleteBackupRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L942}
///
Status DeleteBackup(
google::bigtable::admin::v2::DeleteBackupRequest const& request,
Options opts = {});
///
/// Lists Cloud Bigtable backups. Returns both completed and pending
/// backups.
///
/// @param parent Required. The cluster to list backups from. Values are of
/// the
/// form `projects/{project}/instances/{instance}/clusters/{cluster}`.
/// Use `{cluster} = '-'` to list backups for all clusters in an instance,
/// e.g., `projects/{project}/instances/{instance}/clusters/-`.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.ListBackupsRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L955}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
StreamRange<google::bigtable::admin::v2::Backup> ListBackups(
std::string const& parent, Options opts = {});
///
/// Lists Cloud Bigtable backups. Returns both completed and pending
/// backups.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::ListBackupsRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L955}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Backup,google/bigtable/admin/v2/table.proto#L303}
///
/// [google.bigtable.admin.v2.ListBackupsRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L955}
/// [google.bigtable.admin.v2.Backup]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L303}
///
StreamRange<google::bigtable::admin::v2::Backup> ListBackups(
google::bigtable::admin::v2::ListBackupsRequest request,
Options opts = {});
///
/// Create a new table by restoring from a completed backup. The new table
/// must be in the same project as the instance containing the backup. The
/// returned table [long-running operation][google.longrunning.Operation] can
/// be used to track the progress of the operation, and to cancel it. The
/// [metadata][google.longrunning.Operation.metadata] field type is
/// [RestoreTableMetadata][google.bigtable.admin.RestoreTableMetadata]. The
/// [response][google.longrunning.Operation.response] type is
/// [Table][google.bigtable.admin.v2.Table], if successful.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::RestoreTableRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L349}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::Table,google/bigtable/admin/v2/table.proto#L53}
///
/// [google.bigtable.admin.v2.RestoreTableRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L349}
/// [google.bigtable.admin.v2.Table]:
/// @googleapis_reference_link{google/bigtable/admin/v2/table.proto#L53}
///
future<StatusOr<google::bigtable::admin::v2::Table>> RestoreTable(
google::bigtable::admin::v2::RestoreTableRequest const& request,
Options opts = {});
///
/// Gets the access control policy for a Table or Backup resource.
/// Returns an empty policy if the resource exists but does not have a policy
/// set.
///
/// @param resource REQUIRED: The resource for which the policy is being
/// requested.
/// See the operation documentation for the appropriate value for this field.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::iam::v1::Policy,google/iam/v1/policy.proto#L96}
///
/// [google.iam.v1.GetIamPolicyRequest]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L123}
/// [google.iam.v1.Policy]:
/// @googleapis_reference_link{google/iam/v1/policy.proto#L96}
///
StatusOr<google::iam::v1::Policy> GetIamPolicy(std::string const& resource,
Options opts = {});
///
/// Gets the access control policy for a Table or Backup resource.
/// Returns an empty policy if the resource exists but does not have a policy
/// set.
///
/// @param request
/// @googleapis_link{google::iam::v1::GetIamPolicyRequest,google/iam/v1/iam_policy.proto#L123}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::iam::v1::Policy,google/iam/v1/policy.proto#L96}
///
/// [google.iam.v1.GetIamPolicyRequest]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L123}
/// [google.iam.v1.Policy]:
/// @googleapis_reference_link{google/iam/v1/policy.proto#L96}
///
StatusOr<google::iam::v1::Policy> GetIamPolicy(
google::iam::v1::GetIamPolicyRequest const& request, Options opts = {});
///
/// Sets the access control policy on a Table or Backup resource.
/// Replaces any existing policy.
///
/// @param resource REQUIRED: The resource for which the policy is being
/// specified.
/// See the operation documentation for the appropriate value for this field.
/// @param policy REQUIRED: The complete policy to be applied to the
/// `resource`. The size of
/// the policy is limited to a few 10s of KB. An empty policy is a
/// valid policy but certain Cloud Platform services (such as Projects)
/// might reject them.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::iam::v1::Policy,google/iam/v1/policy.proto#L96}
///
/// [google.iam.v1.SetIamPolicyRequest]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L101}
/// [google.iam.v1.Policy]:
/// @googleapis_reference_link{google/iam/v1/policy.proto#L96}
///
StatusOr<google::iam::v1::Policy> SetIamPolicy(
std::string const& resource, google::iam::v1::Policy const& policy,
Options opts = {});
/**
* Updates the IAM policy for @p resource using an optimistic concurrency
* control loop.
*
* The loop fetches the current policy for @p resource, and passes it to @p
* updater, which should return the new policy. This new policy should use the
* current etag so that the read-modify-write cycle can detect races and rerun
* the update when there is a mismatch. If the new policy does not have an
* etag, the existing policy will be blindly overwritten. If @p updater does
* not yield a policy, the control loop is terminated and kCancelled is
* returned.
*
* @param resource Required. The resource for which the policy is being
* specified. See the operation documentation for the appropriate value for
* this field.
* @param updater Required. Functor to map the current policy to a new one.
* @param opts Optional. Override the class-level options, such as retry and
* backoff policies.
* @return google::iam::v1::Policy
*/
StatusOr<google::iam::v1::Policy> SetIamPolicy(std::string const& resource,
IamUpdater const& updater,
Options opts = {});
///
/// Sets the access control policy on a Table or Backup resource.
/// Replaces any existing policy.
///
/// @param request
/// @googleapis_link{google::iam::v1::SetIamPolicyRequest,google/iam/v1/iam_policy.proto#L101}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::iam::v1::Policy,google/iam/v1/policy.proto#L96}
///
/// [google.iam.v1.SetIamPolicyRequest]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L101}
/// [google.iam.v1.Policy]:
/// @googleapis_reference_link{google/iam/v1/policy.proto#L96}
///
StatusOr<google::iam::v1::Policy> SetIamPolicy(
google::iam::v1::SetIamPolicyRequest const& request, Options opts = {});
///
/// Returns permissions that the caller has on the specified Table or Backup
/// resource.
///
/// @param resource REQUIRED: The resource for which the policy detail is
/// being requested.
/// See the operation documentation for the appropriate value for this field.
/// @param permissions The set of permissions to check for the `resource`.
/// Permissions with
/// wildcards (such as '*' or 'storage.*') are not allowed. For more
/// information see
/// [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::iam::v1::TestIamPermissionsResponse,google/iam/v1/iam_policy.proto#L151}
///
/// [google.iam.v1.TestIamPermissionsRequest]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L136}
/// [google.iam.v1.TestIamPermissionsResponse]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L151}
///
StatusOr<google::iam::v1::TestIamPermissionsResponse> TestIamPermissions(
std::string const& resource, std::vector<std::string> const& permissions,
Options opts = {});
///
/// Returns permissions that the caller has on the specified Table or Backup
/// resource.
///
/// @param request
/// @googleapis_link{google::iam::v1::TestIamPermissionsRequest,google/iam/v1/iam_policy.proto#L136}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::iam::v1::TestIamPermissionsResponse,google/iam/v1/iam_policy.proto#L151}
///
/// [google.iam.v1.TestIamPermissionsRequest]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L136}
/// [google.iam.v1.TestIamPermissionsResponse]:
/// @googleapis_reference_link{google/iam/v1/iam_policy.proto#L151}
///
StatusOr<google::iam::v1::TestIamPermissionsResponse> TestIamPermissions(
google::iam::v1::TestIamPermissionsRequest const& request,
Options opts = {});
///
/// Checks replication consistency based on a consistency token, that is, if
/// replication has caught up based on the conditions specified in the token
/// and the check request.
///
/// @param name Required. The unique name of the Table for which to check
/// replication consistency.
/// Values are of the form
/// `projects/{project}/instances/{instance}/tables/{table}`.
/// @param consistency_token Required. The token created using
/// GenerateConsistencyToken for the Table.
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::CheckConsistencyResponse,google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
/// [google.bigtable.admin.v2.CheckConsistencyRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L687}
/// [google.bigtable.admin.v2.CheckConsistencyResponse]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
future<StatusOr<google::bigtable::admin::v2::CheckConsistencyResponse>>
AsyncCheckConsistency(std::string const& name,
std::string const& consistency_token,
Options opts = {});
///
/// Checks replication consistency based on a consistency token, that is, if
/// replication has caught up based on the conditions specified in the token
/// and the check request.
///
/// @param request
/// @googleapis_link{google::bigtable::admin::v2::CheckConsistencyRequest,google/bigtable/admin/v2/bigtable_table_admin.proto#L687}
/// @param opts Optional. Override the class-level options, such as retry and
/// backoff policies.
/// @return
/// @googleapis_link{google::bigtable::admin::v2::CheckConsistencyResponse,google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
/// [google.bigtable.admin.v2.CheckConsistencyRequest]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L687}
/// [google.bigtable.admin.v2.CheckConsistencyResponse]:
/// @googleapis_reference_link{google/bigtable/admin/v2/bigtable_table_admin.proto#L704}
///
future<StatusOr<google::bigtable::admin::v2::CheckConsistencyResponse>>
AsyncCheckConsistency(
google::bigtable::admin::v2::CheckConsistencyRequest const& request,
Options opts = {});
private:
std::shared_ptr<BigtableTableAdminConnection> connection_;
Options options_;
};
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace bigtable_admin
} // namespace cloud
} // namespace google
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_BIGTABLE_ADMIN_BIGTABLE_TABLE_ADMIN_CLIENT_H