forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase_admin_client.h
More file actions
585 lines (552 loc) · 21.7 KB
/
database_admin_client.h
File metadata and controls
585 lines (552 loc) · 21.7 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
// Copyright 2019 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
//
// http://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.
#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_SPANNER_DATABASE_ADMIN_CLIENT_H
#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_SPANNER_DATABASE_ADMIN_CLIENT_H
#include "google/cloud/spanner/backup.h"
#include "google/cloud/spanner/connection_options.h"
#include "google/cloud/spanner/database.h"
#include "google/cloud/spanner/database_admin_connection.h"
#include "google/cloud/spanner/iam_updater.h"
#include "google/cloud/spanner/instance.h"
#include "google/cloud/spanner/timestamp.h"
#include "google/cloud/spanner/version.h"
#include "google/cloud/future.h"
#include "google/cloud/status_or.h"
#include "absl/types/optional.h"
#include <chrono>
namespace google {
namespace cloud {
namespace spanner {
inline namespace SPANNER_CLIENT_NS {
/**
* Performs database administration operations on Spanner.
*
* Applications use this class to perform administrative operations on spanner
* [Databases][database-doc-link].
*
* @par Performance
*
* Creating a new `DatabaseAdminClient` is a relatively expensive operation, new
* objects establish new connections to the service. In contrast, copying or
* moving an existing `DatabaseAdminClient` object is a relatively cheap
* operation. Copied clients share the underlying resources.
*
* @par Thread Safety
*
* Instances of this class created via copy-construction or copy-assignment
* share the underlying pool of connections. Access to these copies via multiple
* threads is guaranteed to work. Two threads operating on the same instance of
* this class is not guaranteed to work.
*
* @par Error Handling
*
* This class uses `StatusOr<T>` to report errors. When an operation fails to
* perform its work the returned `StatusOr<T>` contains the error details. If
* the `ok()` member function in the `StatusOr<T>` returns `true` then it
* contains the expected result. Please consult the
* [`StatusOr<T>` documentation](#google::cloud::v0::StatusOr) for more details.
*
* @code
* namespace spanner = ::google::cloud::spanner;
* using ::google::cloud::StatusOr;
* spanner::DatabaseAdminClient client = ...;
* StatusOr<google::spanner::admin::database::v1::Database> db =
* client.CreateDatabase(...).get();
*
* if (!db) {
* std::cerr << "Error in CreateDatabase: " << db.status() << "\n";
* return;
* }
*
* // Use `db` as a smart pointer here, e.g.:
* std::cout << "The database fully qualified name is: " << db->name() << "\n";
* @endcode
*
* @par Long running operations
*
* Some operations in this class can take minutes to complete. In this case the
* class returns a `google::cloud::future<StatusOr<T>>`, the application can
* then poll the `future` or associate a callback to be invoked when the
* operation completes:
*
* @code
* namespace spanner = ::google::cloud::spanner;
* spanner::DatabaseAdminClient client = ...;
* // Make example less verbose.
* using ::google::cloud::future;
* using ::google::cloud::StatusOr;
* using std::chrono::chrono_literals; // C++14
*
* auto database = client.CreateDatabase(...);
* if (database.wait_for(5m) == std::future_state::ready) {
* std::cout << "Database created in under 5 minutes, yay!\n";
* return;
* }
* // Too slow, setup a callback instead:
* database.then([](auto f) {
* StatusOr<google::spanner::admin::database::v1::Database> db = f.get();
* if (!db) {
* std::cout << "Failed creating a database!\n";
* return;
* }
* std::cout << "Database created!\n";
* });
* @endcode
*
* [database-doc-link]:
* https://cloud.google.com/spanner/docs/schema-and-data-model
*/
class DatabaseAdminClient {
public:
explicit DatabaseAdminClient(
ConnectionOptions const& options = ConnectionOptions());
/**
* Creates a new Cloud Spanner database in the given project and instance.
*
* This function creates a database (using the "CREATE DATABASE" DDL
* statement) in the given Google Cloud Project and Cloud Spanner instance.
* The application can provide an optional list of additional DDL statements
* to atomically create tables and indices as well as the new database.
*
* Note that the database id must be between 2 and 30 characters long, it must
* start with a lowercase letter (`[a-z]`), it must end with a lowercase
* letter or a number (`[a-z0-9]`) and any characters between the beginning
* and ending characters must be lower case letters, numbers, underscore (`_`)
* or dashes (`-`), that is, they must belong to the `[a-z0-9_-]` character
* set.
*
* @return A `google::cloud::future` that becomes satisfied when the operation
* completes on the service. Note that this can take minutes in some cases.
*
* @par Example
* @snippet samples.cc create-database
*
* @see https://cloud.google.com/spanner/docs/data-definition-language for a
* full list of the DDL operations
*
* @see
* https://cloud.google.com/spanner/docs/data-definition-language#create_database
* for the regular expression that must be satisfied by the database id.
*/
future<StatusOr<google::spanner::admin::database::v1::Database>>
CreateDatabase(Database db, std::vector<std::string> extra_statements = {});
/**
* Retrieve metadata information about a database.
*
* @par Idempotency
* This is a read-only operation and therefore always idempotent. Transient
* failures are automatically retried.
*
* @par Example
* @snippet samples.cc get-database
*/
StatusOr<google::spanner::admin::database::v1::Database> GetDatabase(
Database db);
/**
* Retrieve a database schema.
*
* @par Idempotency
* This is a read-only operation and therefore always idempotent. Transient
* failures are automatically retried.
*
* @par Example
* @snippet samples.cc get-database-ddl
*/
StatusOr<google::spanner::admin::database::v1::GetDatabaseDdlResponse>
GetDatabaseDdl(Database db);
/**
* Updates the database using a series of DDL statements.
*
* This function schedules a series of updates to the database using a
* sequence of DDL statements.
*
* @return A `google::cloud::future` that becomes satisfied when all the
* statements complete. Note that Cloud Spanner may fail to execute some of
* the statements.
*
* @par Example
* @snippet samples.cc update-database
*
* @see https://cloud.google.com/spanner/docs/data-definition-language for a
* full list of the DDL operations
*/
future<
StatusOr<google::spanner::admin::database::v1::UpdateDatabaseDdlMetadata>>
UpdateDatabase(Database db, std::vector<std::string> statements);
/**
* Drops (deletes) an existing Cloud Spanner database.
*
* @warning Dropping a database deletes all the tables and other data in the
* database. This is an unrecoverable operation.
*
* @par Example
* @snippet samples.cc drop-database
*/
Status DropDatabase(Database db);
/**
* List all the databases in a give project and instance.
*
* @par Idempotency
* This operation is read-only and therefore always idempotent.
*
* @par Example
* @snippet samples.cc list-databases
*/
ListDatabaseRange ListDatabases(Instance in);
/**
* Create a new database by restoring from a completed backup.
*
* @par Idempotency
* This is not an idempotent operation. Transient failures are not retried.
*
* The new database must be in the same project and in an instance with the
* same instance configuration as the instance containing the backup.
*
* @return A `google::cloud::future` that becomes satisfied when the operation
* completes on the service. Note that this can take minutes in some cases.
*
* @par Example
* @snippet samples.cc restore-database
*/
future<StatusOr<google::spanner::admin::database::v1::Database>>
RestoreDatabase(Database db, Backup const& backup);
/**
* Create a new database by restoring from a completed backup.
*
* @par Idempotency
* This is not an idempotent operation. Transient failures are not retried.
*
* The new database must be in the same project and in an instance with the
* same instance configuration as the instance containing the backup.
*
* @return A `google::cloud::future` that becomes satisfied when the operation
* completes on the service. Note that this can take minutes in some cases.
*/
future<StatusOr<google::spanner::admin::database::v1::Database>>
RestoreDatabase(Database db,
google::spanner::admin::database::v1::Backup const& backup);
/**
* Gets the IAM policy for a database.
*
* @par Idempotency
* This operation is read-only and therefore always idempotent.
*
* @par Example
* @snippet samples.cc database-get-iam-policy
*/
StatusOr<google::iam::v1::Policy> GetIamPolicy(Database db);
/**
* Set the IAM policy for the given database.
*
* This function changes the IAM policy configured in the given database to
* the value of @p policy.
*
* @par Idempotency
* This function is only idempotent if the `etag` field in @p policy is set.
* Therefore, the underlying RPCs are only retried if the field is set, and
* the function returns the first RPC error in any other case.
*
* @see The [Cloud Spanner
* documentation](https://cloud.google.com/spanner/docs/iam) for a
* description of the roles and permissions supported by Cloud Spanner.
* @see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions)
* for an introduction to Identity and Access Management in Google Cloud
* Platform.
*/
StatusOr<google::iam::v1::Policy> SetIamPolicy(
Database db, google::iam::v1::Policy policy);
/**
* Updates the IAM policy for an instance using an optimistic concurrency
* control loop.
*
* This function repeatedly reads the current IAM policy in @p db, and then
* calls the @p updater with the this policy. The @p updater returns an empty
* optional if no changes are required, or it returns the new desired value
* for the IAM policy. This function then updates the policy.
*
* Updating an IAM policy can fail with retryable errors or can be aborted
* because there were simultaneous changes the to IAM policy. In these cases
* this function reruns the loop until it succeeds.
*
* The function returns the final IAM policy, or an error if the rerun policy
* for the underlying connection has expired.
*
* @par Idempotency
* This function always sets the `etag` field on the policy, so the underlying
* RPCs are retried automatically.
*
* @par Example
* @snippet samples.cc add-database-reader-on-database
*
* @param db the identifier for the database where you want to change the IAM
* policy.
* @param updater a callback to modify the policy. Return an unset optional
* to indicate that no changes to the policy are needed.
*/
StatusOr<google::iam::v1::Policy> SetIamPolicy(Database const& db,
IamUpdater const& updater);
/**
* @copydoc SetIamPolicy(Database const&,IamUpdater const&)
*
* @param rerun_policy controls for how long (or how many times) the updater
* will be rerun after the IAM policy update aborts.
* @param backoff_policy controls how long `SetIamPolicy` waits between
* reruns.
*/
StatusOr<google::iam::v1::Policy> SetIamPolicy(
Database const& db, IamUpdater const& updater,
std::unique_ptr<TransactionRerunPolicy> rerun_policy,
std::unique_ptr<BackoffPolicy> backoff_policy);
/**
* Get the subset of the permissions the caller has on the given database.
*
* This function compares the given list of permissions against those
* permissions granted to the caller, and returns the subset of the list that
* the caller actually holds.
*
* @note Permission wildcards, such as `spanner.*` are not allowed.
*
* @par Idempotency
* This operation is read-only and therefore always idempotent.
*
* @par Example
* @snippet samples.cc database-test-iam-permissions
*
* @see The [Cloud Spanner
* documentation](https://cloud.google.com/spanner/docs/iam) for a description
* of the roles and permissions supported by Cloud Spanner.
* @see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions)
* for an introduction to Identity and Access Management in Google Cloud
* Platform.
*/
StatusOr<google::iam::v1::TestIamPermissionsResponse> TestIamPermissions(
Database db, std::vector<std::string> permissions);
/**
* Creates a new Cloud Spanner backup for the given database.
*
* @par Idempotency
* This is not an idempotent operation. Transient failures are not retried.
*
* This function creates a database backup for the given Google Cloud Spanner
* database.
*
* Note that the @p backup_id must be unique within the same instance, it must
* be between 2 and 60 characters long, it must start with a lowercase letter
* (`[a-z]`), it must end with a lowercase letter or a number (`[a-z0-9]`) and
* any characters between the beginning and ending characters must be lower
* case letters, numbers, underscore (`_`) or dashes (`-`), that is, they must
* belong to the `[a-z0-9_-]` character set.
*
* The @p expire_time must be at least 6 hours and at most 366 days from the
* time the `CreateBackup()` request is processed.
*
* The backup will contain an externally consistent copy of the database
* at @p version_time, if set. Otherwise, the version_time will be the
* create_time of the backup.
*
* @return A `google::cloud::future` that becomes satisfied when the operation
* completes on the service. Note that this can take minutes in some cases.
*
* @par Example
* @snippet samples.cc create-backup
*/
future<StatusOr<google::spanner::admin::database::v1::Backup>> CreateBackup(
Database db, std::string backup_id, Timestamp expire_time,
absl::optional<Timestamp> version_time = absl::nullopt);
/**
* Creates a new Cloud Spanner backup for the given database.
*
* @deprecated this overload is deprecated; use the `Timestamp` overload
* instead.
*
* @par Idempotency
* This is not an idempotent operation. Transient failures are not retried.
*
* This function creates a database backup for the given Google Cloud Spanner
* database.
*
* Note that the @p backup_id must be unique within the same instance, it must
* be between 2 and 60 characters long, it must start with a lowercase letter
* (`[a-z]`), it must end with a lowercase letter or a number (`[a-z0-9]`) and
* any characters between the beginning and ending characters must be lower
* case letters, numbers, underscore (`_`) or dashes (`-`), that is, they must
* belong to the `[a-z0-9_-]` character set.
*
* The @p expire_time must be at least 6 hours and at most 366 days from the
* time the `CreateBackup()` request is processed.
*
* @return A `google::cloud::future` that becomes satisfied when the operation
* completes on the service. Note that this can take minutes in some cases.
*/
future<StatusOr<google::spanner::admin::database::v1::Backup>> CreateBackup(
Database db, std::string backup_id,
std::chrono::system_clock::time_point expire_time);
/**
* Retrieve metadata information about a Backup.
*
* @par Idempotency
* This is a read-only operation and therefore always idempotent. Transient
* failures are automatically retried.
*
* @par Example
* @snippet samples.cc get-backup
*/
StatusOr<google::spanner::admin::database::v1::Backup> GetBackup(
Backup const& backup);
/**
* Deletes a pending or completed Backup.
*
* @par Idempotency
* We treat this operation as idempotent. Transient failures are automatically
* retried.
*/
Status DeleteBackup(
google::spanner::admin::database::v1::Backup const& backup);
/**
* Deletes a pending or completed Backup.
*
* @par Idempotency
* We treat this operation as idempotent. Transient failures are automatically
* retried.
*
* @par Example
* @snippet samples.cc delete-backup
*/
Status DeleteBackup(Backup const& backup);
/**
* List all the backups in a given project and instance that match
* the filter.
*
* @par Idempotency
* This operation is read-only and therefore always idempotent.
*
* @param in An instance where the backup operations belong to.
* @param filter A filter expression that filters backups listed in the
* response. See [this documentation][spanner-api-reference-link] for the
* syntax of the filter expression.
*
* @par Example
* @snippet samples.cc list-backups
*
* [spanner-api-reference-link]:
* https://cloud.google.com/spanner/docs/reference/rpc/google.spanner.admin.database.v1#google.spanner.admin.database.v1.ListBackupsRequest
*/
ListBackupsRange ListBackups(Instance in, std::string filter = {});
/**
* Update backup's @p expire_time.
*
* @par Idempotency
* This operation is idempotent as its result does not depend on the previous
* state of the backup. Note that, as is the case with all operations, it is
* subject to race conditions if multiple tasks are attempting to change the
* expire time in the same backup.
*/
StatusOr<google::spanner::admin::database::v1::Backup> UpdateBackupExpireTime(
google::spanner::admin::database::v1::Backup const& backup,
Timestamp expire_time);
/**
* Update backup's @p expire_time.
*
* @par Idempotency
* This operation is idempotent as its result does not depend on the previous
* state of the backup. Note that, as is the case with all operations, it is
* subject to race conditions if multiple tasks are attempting to change the
* expire time in the same backup.
*
* @par Example
* @snippet samples.cc update-backup
*/
StatusOr<google::spanner::admin::database::v1::Backup> UpdateBackupExpireTime(
Backup const& backup, Timestamp expire_time);
/**
* Update backup's @p expire_time.
*
* @deprecated this overload is deprecated; use the `Timestamp` overload
* instead.
*
* @par Idempotency
* This operation is idempotent as its result does not depend on the previous
* state of the backup. Note that, as is the case with all operations, it is
* subject to race conditions if multiple tasks are attempting to change the
* expire time in the same backup.
*/
StatusOr<google::spanner::admin::database::v1::Backup> UpdateBackupExpireTime(
google::spanner::admin::database::v1::Backup const& backup,
std::chrono::system_clock::time_point const& expire_time);
/**
* Update backup's @p expire_time.
*
* @deprecated this overload is deprecated; use the `Timestamp` overload
* instead.
*
* @par Idempotency
* This operation is idempotent as its result does not depend on the previous
* state of the backup. Note that, as is the case with all operations, it is
* subject to race conditions if multiple tasks are attempting to change the
* expire time in the same backup.
*/
StatusOr<google::spanner::admin::database::v1::Backup> UpdateBackupExpireTime(
Backup const& backup,
std::chrono::system_clock::time_point const& expire_time);
/**
* List all the backup operations in a given project and instance that match
* the filter.
*
* @par Idempotency
* This operation is read-only and therefore always idempotent.
*
* @param in An instance where the backup operations belong to.
* @param filter A filter expression that filters what operations are returned
* in the response. See [this documentation][spanner-api-reference-link] for
* the syntax of the filter expression.
*
* @par Example
* @snippet samples.cc list-backup-operations
*
* [spanner-api-reference-link]:
* https://cloud.google.com/spanner/docs/reference/rpc/google.spanner.admin.database.v1#google.spanner.admin.database.v1.ListBackupOperationsRequest
*/
ListBackupOperationsRange ListBackupOperations(Instance in,
std::string filter = {});
/**
* List all the database operations in a given project and instance that match
* the filter.
*
* @par Idempotency
* This operation is read-only and therefore always idempotent.
*
* @param in An instance where the database operations belong to.
* @param filter A filter expression that filters what operations are returned
* in the response. See [this documentation][spanner-api-reference-link] for
* the syntax of the filter expression.
*
* @par Example
* @snippet samples.cc list-database-operations
*
* [spanner-api-reference-link]:
* https://cloud.google.com/spanner/docs/reference/rpc/google.spanner.admin.database.v1#google.spanner.admin.database.v1.ListDatabaseOperationsRequest
*/
ListDatabaseOperationsRange ListDatabaseOperations(Instance in,
std::string filter = {});
/// Create a new client with the given stub. For testing only.
explicit DatabaseAdminClient(std::shared_ptr<DatabaseAdminConnection> c)
: conn_(std::move(c)) {}
private:
std::shared_ptr<DatabaseAdminConnection> conn_;
};
} // namespace SPANNER_CLIENT_NS
} // namespace spanner
} // namespace cloud
} // namespace google
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_SPANNER_DATABASE_ADMIN_CLIENT_H