google-cloud-bigtable 2.5.0 → 2.6.3

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 (41) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +2 -1
  3. data/CHANGELOG.md +25 -0
  4. data/OVERVIEW.md +1 -1
  5. data/lib/google/cloud/bigtable/app_profile/job.rb +4 -4
  6. data/lib/google/cloud/bigtable/app_profile/list.rb +5 -7
  7. data/lib/google/cloud/bigtable/app_profile.rb +20 -21
  8. data/lib/google/cloud/bigtable/backup/job.rb +8 -8
  9. data/lib/google/cloud/bigtable/backup/list.rb +9 -11
  10. data/lib/google/cloud/bigtable/backup.rb +64 -34
  11. data/lib/google/cloud/bigtable/cluster/job.rb +2 -2
  12. data/lib/google/cloud/bigtable/cluster.rb +15 -15
  13. data/lib/google/cloud/bigtable/column_family.rb +2 -2
  14. data/lib/google/cloud/bigtable/column_family_map.rb +14 -14
  15. data/lib/google/cloud/bigtable/column_range.rb +7 -7
  16. data/lib/google/cloud/bigtable/encryption_info.rb +4 -4
  17. data/lib/google/cloud/bigtable/gc_rule.rb +20 -20
  18. data/lib/google/cloud/bigtable/instance/cluster_map.rb +6 -6
  19. data/lib/google/cloud/bigtable/instance/job.rb +4 -4
  20. data/lib/google/cloud/bigtable/instance.rb +40 -40
  21. data/lib/google/cloud/bigtable/mutation_entry.rb +21 -21
  22. data/lib/google/cloud/bigtable/mutation_operations.rb +34 -34
  23. data/lib/google/cloud/bigtable/policy.rb +4 -4
  24. data/lib/google/cloud/bigtable/project.rb +15 -15
  25. data/lib/google/cloud/bigtable/read_operations.rb +31 -31
  26. data/lib/google/cloud/bigtable/routing_policy.rb +6 -6
  27. data/lib/google/cloud/bigtable/row_filter/chain_filter.rb +30 -29
  28. data/lib/google/cloud/bigtable/row_filter/condition_filter.rb +6 -6
  29. data/lib/google/cloud/bigtable/row_filter/interleave_filter.rb +27 -26
  30. data/lib/google/cloud/bigtable/row_filter.rb +28 -28
  31. data/lib/google/cloud/bigtable/row_range.rb +18 -18
  32. data/lib/google/cloud/bigtable/sample_row_key.rb +1 -1
  33. data/lib/google/cloud/bigtable/service.rb +6 -3
  34. data/lib/google/cloud/bigtable/status.rb +2 -2
  35. data/lib/google/cloud/bigtable/table/cluster_state.rb +1 -1
  36. data/lib/google/cloud/bigtable/table/list.rb +2 -2
  37. data/lib/google/cloud/bigtable/table/restore_job.rb +12 -12
  38. data/lib/google/cloud/bigtable/table.rb +34 -34
  39. data/lib/google/cloud/bigtable/value_range.rb +18 -18
  40. data/lib/google/cloud/bigtable/version.rb +1 -1
  41. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87e7128a687d06d1e5dc3e74f2b529ab43b3c9ea28717d738c433ea86fb297ad
4
- data.tar.gz: a04ca13f900445078568a3a1cf64ef84d57686a494f3a652cc6ec461af41712e
3
+ metadata.gz: d5d6fdd59208f51aa50479e83129f8689ecac860ae17f2abe04d525392f5a595
4
+ data.tar.gz: 1aa4c9cd7b7fb605d538cbf70bb6adb1f4210e60302cf600db4ccc33594e77de
5
5
  SHA512:
6
- metadata.gz: dc329bd4e9f0d1ed5c5376c40da2924a41f83681df93803aafcadd9ed846bdd2119b913661054b95cfc70cbbfada891b58563b3146396acd872ae2fa79cbff2b
7
- data.tar.gz: af466ef435035adae503c5368b0e7c899e84424151044d49efb51f2920e121854ca8af51708c9fce7181e1116410408c635a040442b8b004df45d76b5184c721
6
+ metadata.gz: 5bd7202000a07744b619c074784d318295370063275a2b3ac28aa287c1ac3718874f26f70bffddf9853cf71a34530dee0d9753a28091f1e2e4fb7ec836efd74c
7
+ data.tar.gz: ce6d9e219982b4e1f9c908f5f320b4b0d4b472b304e4c9cff654469c8610bf4734090ee4abb864e6f22b841fd7671776d98efe242ba941e167346ba5fdd0884a
data/AUTHENTICATION.md CHANGED
@@ -95,7 +95,8 @@ client = Google::Cloud::Bigtable.new
95
95
 
96
96
  ### Configuration
97
97
 
98
- The **Project ID** and **Credentials JSON** can be configured instead of placing them in environment variables or providing them as arguments.
98
+ The **Project ID** and the path to the **Credentials JSON** file can be configured
99
+ instead of placing them in environment variables or providing them as arguments.
99
100
 
100
101
  ```ruby
101
102
  require "google/cloud/bigtable"
data/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Release History
2
2
 
3
+ ### 2.6.3 / 2021-09-21
4
+
5
+ #### Documentation
6
+
7
+ * Fix typo in Emulator guide links
8
+
9
+ ### 2.6.2 / 2021-08-02
10
+
11
+ #### Documentation
12
+
13
+ * Update inline doc samples to match library code style
14
+
15
+ ### 2.6.1 / 2021-07-08
16
+
17
+ #### Documentation
18
+
19
+ * Update AUTHENTICATION.md in handwritten packages
20
+
21
+ ### 2.6.0 / 2021-05-03
22
+
23
+ #### Features
24
+
25
+ * Add support for Backup restore to different Instance
26
+ * Add instance to Backup#restore
27
+
3
28
  ### 2.5.0 / 2021-04-20
4
29
 
5
30
  #### Features
data/OVERVIEW.md CHANGED
@@ -396,5 +396,5 @@ instance.delete
396
396
  ## Additional information
397
397
 
398
398
  Google Bigtable can be configured to use an emulator or to enable gRPC's
399
- logging. To learn more, see the {file:EMULATOR.md Emulator guide}} and
399
+ logging. To learn more, see the {file:EMULATOR.md Emulator guide} and
400
400
  {file:LOGGING.md Logging guide}.
@@ -34,8 +34,8 @@ module Google
34
34
  #
35
35
  # bigtable = Google::Cloud::Bigtable.new
36
36
  #
37
- # instance = bigtable.instance("my-instance")
38
- # app_profile = instance.app_profile("my-app-profile")
37
+ # instance = bigtable.instance "my-instance"
38
+ # app_profile = instance.app_profile "my-app-profile"
39
39
  #
40
40
  # app_profile.description = "User data instance app profile"
41
41
  # routing_policy = Google::Cloud::Bigtable::AppProfile.single_cluster_routing(
@@ -71,8 +71,8 @@ module Google
71
71
  #
72
72
  # bigtable = Google::Cloud::Bigtable.new
73
73
  #
74
- # instance = bigtable.instance("my-instance")
75
- # app_profile = instance.app_profile("my-app-profile")
74
+ # instance = bigtable.instance "my-instance"
75
+ # app_profile = instance.app_profile "my-app-profile"
76
76
  #
77
77
  # app_profile.description = "User data instance app profile"
78
78
  # routing_policy = Google::Cloud::Bigtable::AppProfile.single_cluster_routing(
@@ -47,7 +47,7 @@ module Google
47
47
  #
48
48
  # bigtable = Google::Cloud::Bigtable.new
49
49
  #
50
- # instance = bigtable.instance("my-instance")
50
+ # instance = bigtable.instance "my-instance"
51
51
  # app_profiles = instance.app_profiles
52
52
  #
53
53
  # if app_profiles.next?
@@ -68,7 +68,7 @@ module Google
68
68
  #
69
69
  # bigtable = Google::Cloud::Bigtable.new
70
70
  #
71
- # instance = bigtable.instance("my-instance")
71
+ # instance = bigtable.instance "my-instance"
72
72
  # app_profiles = instance.app_profiles
73
73
  #
74
74
  # if app_profiles.next?
@@ -104,7 +104,7 @@ module Google
104
104
  #
105
105
  # bigtable = Google::Cloud::Bigtable.new
106
106
  #
107
- # instance = bigtable.instance("my-instance")
107
+ # instance = bigtable.instance "my-instance"
108
108
  # app_profiles = instance.app_profiles
109
109
  #
110
110
  # instance.app_profiles.all do |app_profile|
@@ -116,11 +116,9 @@ module Google
116
116
  #
117
117
  # bigtable = Google::Cloud::Bigtable.new
118
118
  #
119
- # instance = bigtable.instance("my-instance")
119
+ # instance = bigtable.instance "my-instance"
120
120
  #
121
- # all_app_profile_ids = instance.app_profiles.all.map do |app_profile|
122
- # app_profile.name
123
- # end
121
+ # all_app_profile_ids = instance.app_profiles.all.map(&:name)
124
122
  #
125
123
  def all &block
126
124
  return enum_for :all unless block_given?
@@ -33,9 +33,9 @@ module Google
33
33
  #
34
34
  # bigtable = Google::Cloud::Bigtable.new
35
35
  #
36
- # instance = bigtable.instance("my-instance")
36
+ # instance = bigtable.instance "my-instance"
37
37
  #
38
- # app_profile = instance.app_profile("my-app-profile")
38
+ # app_profile = instance.app_profile "my-app-profile"
39
39
  #
40
40
  # # Update
41
41
  # app_profile.description = "User data instance app profile"
@@ -172,8 +172,8 @@ module Google
172
172
  # require "google/cloud/bigtable"
173
173
  #
174
174
  # bigtable = Google::Cloud::Bigtable.new
175
- # instance = bigtable.instance("my-instance")
176
- # app_profile = instance.app_profile("my-app-profile")
175
+ # instance = bigtable.instance "my-instance"
176
+ # app_profile = instance.app_profile "my-app-profile"
177
177
  #
178
178
  # routing_policy = Google::Cloud::Bigtable::AppProfile.multi_cluster_routing
179
179
  # app_profile.routing_policy = routing_policy
@@ -182,11 +182,11 @@ module Google
182
182
  # require "google/cloud/bigtable"
183
183
  #
184
184
  # bigtable = Google::Cloud::Bigtable.new
185
- # instance = bigtable.instance("my-instance")
186
- # app_profile = instance.app_profile("my-app-profile")
185
+ # instance = bigtable.instance "my-instance"
186
+ # app_profile = instance.app_profile "my-app-profile"
187
187
  #
188
188
  # routing_policy = Google::Cloud::Bigtable::AppProfile.single_cluster_routing(
189
- # "my-instance-cluster-1",
189
+ # "my-cluster",
190
190
  # allow_transactional_writes: true
191
191
  # )
192
192
  # app_profile.routing_policy = routing_policy
@@ -225,7 +225,7 @@ module Google
225
225
  #
226
226
  # bigtable = Google::Cloud::Bigtable.new
227
227
  #
228
- # instance = bigtable.instance("my-instance")
228
+ # instance = bigtable.instance "my-instance"
229
229
  #
230
230
  # routing_policy = Google::Cloud::Bigtable::AppProfile.multi_cluster_routing
231
231
  #
@@ -253,11 +253,11 @@ module Google
253
253
  #
254
254
  # bigtable = Google::Cloud::Bigtable.new
255
255
  #
256
- # instance = bigtable.instance("my-instance")
256
+ # instance = bigtable.instance "my-instance"
257
257
  #
258
- # app_profile = instance.app_profile("my-app-profile")
258
+ # app_profile = instance.app_profile "my-app-profile"
259
259
  #
260
- # app_profile.delete(ignore_warnings: true) # Ignore warnings.
260
+ # app_profile.delete ignore_warnings: true # Ignore warnings.
261
261
  #
262
262
  # # OR : Not ignoring warnings
263
263
  # app_profile.delete
@@ -281,20 +281,19 @@ module Google
281
281
  #
282
282
  # bigtable = Google::Cloud::Bigtable.new
283
283
  #
284
- # instance = bigtable.instance("my-instance")
284
+ # instance = bigtable.instance "my-instance"
285
285
  #
286
- # app_profile = instance.app_profile("my-app-profile")
286
+ # app_profile = instance.app_profile "my-app-profile"
287
287
  #
288
288
  # app_profile.description = "User data instance app profile"
289
- # app_profile.routing_policy = \
290
- # Google::Cloud::Bigtable::AppProfile.multi_cluster_routing
289
+ # app_profile.routing_policy = Google::Cloud::Bigtable::AppProfile.multi_cluster_routing
291
290
  #
292
291
  # job = app_profile.save
293
292
  # job.wait_until_done!
294
293
  # if job.error?
295
294
  # puts job.error
296
295
  # else
297
- # puts "App profile successfully update."
296
+ # puts "App profile successfully updated."
298
297
  # app_profile = job.app_profile
299
298
  # end
300
299
  #
@@ -303,8 +302,8 @@ module Google
303
302
  #
304
303
  # bigtable = Google::Cloud::Bigtable.new
305
304
  #
306
- # instance = bigtable.instance("my-instance")
307
- # app_profile = instance.app_profile("my-app-profile")
305
+ # instance = bigtable.instance "my-instance"
306
+ # app_profile = instance.app_profile "my-app-profile"
308
307
  #
309
308
  # app_profile.description = "User data instance app profile"
310
309
  # routing_policy = Google::Cloud::Bigtable::AppProfile.single_cluster_routing(
@@ -360,7 +359,7 @@ module Google
360
359
  #
361
360
  # bigtable = Google::Cloud::Bigtable.new
362
361
  #
363
- # instance = bigtable.instance("my-instance")
362
+ # instance = bigtable.instance "my-instance"
364
363
  #
365
364
  # routing_policy = Google::Cloud::Bigtable::AppProfile.multi_cluster_routing
366
365
  #
@@ -396,10 +395,10 @@ module Google
396
395
  #
397
396
  # bigtable = Google::Cloud::Bigtable.new
398
397
  #
399
- # instance = bigtable.instance("my-instance")
398
+ # instance = bigtable.instance "my-instance"
400
399
  #
401
400
  # routing_policy = Google::Cloud::Bigtable::AppProfile.single_cluster_routing(
402
- # "my-instance-cluster-1",
401
+ # "my-cluster",
403
402
  # allow_transactional_writes: true
404
403
  # )
405
404
  #
@@ -34,12 +34,12 @@ module Google
34
34
  # require "google/cloud/bigtable"
35
35
  #
36
36
  # bigtable = Google::Cloud::Bigtable.new
37
- # instance = bigtable.instance("my-instance")
38
- # cluster = instance.cluster("my-cluster")
39
- # table = instance.table("my-table")
37
+ # instance = bigtable.instance "my-instance"
38
+ # cluster = instance.cluster "my-cluster"
39
+ # table = instance.table "my-table"
40
40
  #
41
41
  # expire_time = Time.now + 60 * 60 * 7
42
- # job = cluster.create_backup(table, "my-backup", expire_time)
42
+ # job = cluster.create_backup table, "my-backup", expire_time
43
43
  #
44
44
  # job.wait_until_done!
45
45
  # job.done? #=> true
@@ -61,12 +61,12 @@ module Google
61
61
  # require "google/cloud/bigtable"
62
62
  #
63
63
  # bigtable = Google::Cloud::Bigtable.new
64
- # instance = bigtable.instance("my-instance")
65
- # cluster = instance.cluster("my-cluster")
66
- # table = instance.table("my-table")
64
+ # instance = bigtable.instance "my-instance"
65
+ # cluster = instance.cluster "my-cluster"
66
+ # table = instance.table "my-table"
67
67
  #
68
68
  # expire_time = Time.now + 60 * 60 * 7
69
- # job = cluster.create_backup(table, "my-backup", expire_time)
69
+ # job = cluster.create_backup table, "my-backup", expire_time
70
70
  #
71
71
  # job.wait_until_done!
72
72
  # job.done? #=> true
@@ -46,8 +46,8 @@ module Google
46
46
  #
47
47
  # bigtable = Google::Cloud::Bigtable.new
48
48
  #
49
- # instance = bigtable.instance("my-instance")
50
- # cluster = instance.cluster("my-cluster")
49
+ # instance = bigtable.instance "my-instance"
50
+ # cluster = instance.cluster "my-cluster"
51
51
  #
52
52
  # backups = cluster.backups
53
53
  #
@@ -69,8 +69,8 @@ module Google
69
69
  #
70
70
  # bigtable = Google::Cloud::Bigtable.new
71
71
  #
72
- # instance = bigtable.instance("my-instance")
73
- # cluster = instance.cluster("my-cluster")
72
+ # instance = bigtable.instance "my-instance"
73
+ # cluster = instance.cluster "my-cluster"
74
74
  #
75
75
  # backups = cluster.backups
76
76
  #
@@ -105,8 +105,8 @@ module Google
105
105
  #
106
106
  # bigtable = Google::Cloud::Bigtable.new
107
107
  #
108
- # instance = bigtable.instance("my-instance")
109
- # cluster = instance.cluster("my-cluster")
108
+ # instance = bigtable.instance "my-instance"
109
+ # cluster = instance.cluster "my-cluster"
110
110
  #
111
111
  # cluster.backups.all do |backup|
112
112
  # puts backup.backup_id
@@ -117,12 +117,10 @@ module Google
117
117
  #
118
118
  # bigtable = Google::Cloud::Bigtable.new
119
119
  #
120
- # instance = bigtable.instance("my-instance")
121
- # cluster = instance.cluster("my-cluster")
120
+ # instance = bigtable.instance "my-instance"
121
+ # cluster = instance.cluster "my-cluster"
122
122
  #
123
- # all_backup_ids = cluster.backups.all.map do |backup|
124
- # backup.backup_id
125
- # end
123
+ # all_backup_ids = cluster.backups.all.map(&:backup_id)
126
124
  #
127
125
  def all &block
128
126
  return enum_for :all unless block_given?
@@ -34,10 +34,10 @@ module Google
34
34
  # require "google/cloud/bigtable"
35
35
  #
36
36
  # bigtable = Google::Cloud::Bigtable.new
37
- # instance = bigtable.instance("my-instance")
38
- # cluster = instance.cluster("my-cluster")
37
+ # instance = bigtable.instance "my-instance"
38
+ # cluster = instance.cluster "my-cluster"
39
39
  #
40
- # backup = cluster.backup("my-backup")
40
+ # backup = cluster.backup "my-backup"
41
41
  #
42
42
  # # Update
43
43
  # backup.expire_time = Time.now + 60 * 60 * 7
@@ -216,10 +216,10 @@ module Google
216
216
  # require "google/cloud/bigtable"
217
217
  #
218
218
  # bigtable = Google::Cloud::Bigtable.new
219
- # instance = bigtable.instance("my-instance")
220
- # cluster = instance.cluster("my-cluster")
219
+ # instance = bigtable.instance "my-instance"
220
+ # cluster = instance.cluster "my-cluster"
221
221
  #
222
- # backup = cluster.backup("my-backup")
222
+ # backup = cluster.backup "my-backup"
223
223
  #
224
224
  # encryption_info = backup.encryption_info
225
225
  # encryption_info.encryption_type #=> :GOOGLE_DEFAULT_ENCRYPTION
@@ -247,10 +247,10 @@ module Google
247
247
  # require "google/cloud/bigtable"
248
248
  #
249
249
  # bigtable = Google::Cloud::Bigtable.new
250
- # instance = bigtable.instance("my-instance")
251
- # cluster = instance.cluster("my-cluster")
250
+ # instance = bigtable.instance "my-instance"
251
+ # cluster = instance.cluster "my-cluster"
252
252
  #
253
- # backup = cluster.backup("my-backup")
253
+ # backup = cluster.backup "my-backup"
254
254
  #
255
255
  # policy = backup.policy
256
256
  #
@@ -258,13 +258,13 @@ module Google
258
258
  # require "google/cloud/bigtable"
259
259
  #
260
260
  # bigtable = Google::Cloud::Bigtable.new
261
- # instance = bigtable.instance("my-instance")
262
- # cluster = instance.cluster("my-cluster")
261
+ # instance = bigtable.instance "my-instance"
262
+ # cluster = instance.cluster "my-cluster"
263
263
  #
264
- # backup = cluster.backup("my-backup")
264
+ # backup = cluster.backup "my-backup"
265
265
  #
266
266
  # backup.policy do |p|
267
- # p.add("roles/owner", "user:owner@example.com")
267
+ # p.add "roles/owner", "user:owner@example.com"
268
268
  # end # 2 API calls
269
269
  #
270
270
  def policy
@@ -294,14 +294,14 @@ module Google
294
294
  # require "google/cloud/bigtable"
295
295
  #
296
296
  # bigtable = Google::Cloud::Bigtable.new
297
- # instance = bigtable.instance("my-instance")
298
- # cluster = instance.cluster("my-cluster")
297
+ # instance = bigtable.instance "my-instance"
298
+ # cluster = instance.cluster "my-cluster"
299
299
  #
300
- # backup = cluster.backup("my-backup")
300
+ # backup = cluster.backup "my-backup"
301
301
  #
302
302
  # policy = backup.policy
303
- # policy.add("roles/owner", "user:owner@example.com")
304
- # updated_policy = backup.update_policy(policy)
303
+ # policy.add "roles/owner", "user:owner@example.com"
304
+ # updated_policy = backup.update_policy policy
305
305
  #
306
306
  # puts updated_policy.roles
307
307
  #
@@ -330,10 +330,10 @@ module Google
330
330
  # require "google/cloud/bigtable"
331
331
  #
332
332
  # bigtable = Google::Cloud::Bigtable.new
333
- # instance = bigtable.instance("my-instance")
334
- # cluster = instance.cluster("my-cluster")
333
+ # instance = bigtable.instance "my-instance"
334
+ # cluster = instance.cluster "my-cluster"
335
335
  #
336
- # backup = cluster.backup("my-backup")
336
+ # backup = cluster.backup "my-backup"
337
337
  #
338
338
  # permissions = backup.test_iam_permissions(
339
339
  # "bigtable.backups.delete",
@@ -349,9 +349,12 @@ module Google
349
349
  end
350
350
 
351
351
  ##
352
- # Creates a new table by restoring from a completed backup.
352
+ # Creates a new table by restoring data from a completed backup. The new table may be created in an instance
353
+ # different than that of the backup.
353
354
  #
354
355
  # @param table_id [String] The table ID for the new table. This table must not yet exist. Required.
356
+ # @param instance [Instance, String] The instance or the ID of the instance for the new table, if different from
357
+ # the instance of the backup. Optional.
355
358
  #
356
359
  # @return [Google::Cloud::Bigtable::Table::RestoreJob] The job representing the long-running, asynchronous
357
360
  # processing of a backup restore table operation.
@@ -360,12 +363,12 @@ module Google
360
363
  # require "google/cloud/bigtable"
361
364
  #
362
365
  # bigtable = Google::Cloud::Bigtable.new
363
- # instance = bigtable.instance("my-instance")
364
- # cluster = instance.cluster("my-cluster")
366
+ # instance = bigtable.instance "my-instance"
367
+ # cluster = instance.cluster "my-cluster"
365
368
  #
366
- # backup = cluster.backup("my-backup")
369
+ # backup = cluster.backup "my-backup"
367
370
  #
368
- # job = backup.restore("my-new-table")
371
+ # job = backup.restore "my-new-table"
369
372
  #
370
373
  # job.wait_until_done!
371
374
  # job.done? #=> true
@@ -377,8 +380,35 @@ module Google
377
380
  # optimized = job.optimize_table_operation_name
378
381
  # end
379
382
  #
380
- def restore table_id
381
- grpc = service.restore_table table_id, instance_id, cluster_id, backup_id
383
+ # @example Create the table in a different instance.
384
+ # require "google/cloud/bigtable"
385
+ #
386
+ # bigtable = Google::Cloud::Bigtable.new
387
+ # instance = bigtable.instance "my-instance"
388
+ # cluster = instance.cluster "my-cluster"
389
+ #
390
+ # backup = cluster.backup "my-backup"
391
+ #
392
+ # table_instance = bigtable.instance "my-other-instance"
393
+ # job = backup.restore "my-new-table", instance: table_instance
394
+ #
395
+ # job.wait_until_done!
396
+ # job.done? #=> true
397
+ #
398
+ # if job.error?
399
+ # status = job.error
400
+ # else
401
+ # table = job.table
402
+ # optimized = job.optimize_table_operation_name
403
+ # end
404
+ #
405
+ def restore table_id, instance: nil
406
+ table_instance_id = instance.respond_to?(:instance_id) ? instance.instance_id : instance
407
+ grpc = service.restore_table table_id,
408
+ instance_id,
409
+ cluster_id,
410
+ backup_id,
411
+ table_instance_id: table_instance_id
382
412
  Table::RestoreJob.from_grpc grpc, service
383
413
  end
384
414
 
@@ -393,10 +423,10 @@ module Google
393
423
  # require "google/cloud/bigtable"
394
424
  #
395
425
  # bigtable = Google::Cloud::Bigtable.new
396
- # instance = bigtable.instance("my-instance")
397
- # cluster = instance.cluster("my-cluster")
426
+ # instance = bigtable.instance "my-instance"
427
+ # cluster = instance.cluster "my-cluster"
398
428
  #
399
- # backup = cluster.backup("my-backup")
429
+ # backup = cluster.backup "my-backup"
400
430
  #
401
431
  # # Update
402
432
  # backup.expire_time = Time.now + 60 * 60 * 7
@@ -428,10 +458,10 @@ module Google
428
458
  # require "google/cloud/bigtable"
429
459
  #
430
460
  # bigtable = Google::Cloud::Bigtable.new
431
- # instance = bigtable.instance("my-instance")
432
- # cluster = instance.cluster("my-cluster")
461
+ # instance = bigtable.instance "my-instance"
462
+ # cluster = instance.cluster "my-cluster"
433
463
  #
434
- # backup = cluster.backup("my-backup")
464
+ # backup = cluster.backup "my-backup"
435
465
  #
436
466
  # backup.delete
437
467
  #
@@ -34,7 +34,7 @@ module Google
34
34
  #
35
35
  # bigtable = Google::Cloud::Bigtable.new
36
36
  #
37
- # instance = bigtable.instance("my-instance")
37
+ # instance = bigtable.instance "my-instance"
38
38
  # job = instance.create_cluster(
39
39
  # "my-new-cluster",
40
40
  # "us-east-1b",
@@ -67,7 +67,7 @@ module Google
67
67
  #
68
68
  # bigtable = Google::Cloud::Bigtable.new
69
69
  #
70
- # instance = bigtable.instance("my-instance")
70
+ # instance = bigtable.instance "my-instance"
71
71
  # job = instance.create_cluster(
72
72
  # "my-new-cluster",
73
73
  # "us-east-1b",
@@ -33,8 +33,8 @@ module Google
33
33
  #
34
34
  # bigtable = Google::Cloud::Bigtable.new
35
35
  #
36
- # instance = bigtable.instance("my-instance")
37
- # cluster = instance.cluster("my-cluster")
36
+ # instance = bigtable.instance "my-instance"
37
+ # cluster = instance.cluster "my-cluster"
38
38
  #
39
39
  # # Update
40
40
  # cluster.nodes = 3
@@ -239,12 +239,12 @@ module Google
239
239
  # require "google/cloud/bigtable"
240
240
  #
241
241
  # bigtable = Google::Cloud::Bigtable.new
242
- # instance = bigtable.instance("my-instance")
243
- # cluster = instance.cluster("my-cluster")
244
- # table = instance.table("my-table")
242
+ # instance = bigtable.instance "my-instance"
243
+ # cluster = instance.cluster "my-cluster"
244
+ # table = instance.table "my-table"
245
245
  #
246
246
  # expire_time = Time.now + 60 * 60 * 7
247
- # job = cluster.create_backup(table, "my-backup", expire_time)
247
+ # job = cluster.create_backup table, "my-backup", expire_time
248
248
  #
249
249
  # job.wait_until_done!
250
250
  # job.done? #=> true
@@ -277,10 +277,10 @@ module Google
277
277
  #
278
278
  # bigtable = Google::Cloud::Bigtable.new
279
279
  #
280
- # instance = bigtable.instance("my-instance")
281
- # cluster = instance.cluster("my-cluster")
280
+ # instance = bigtable.instance "my-instance"
281
+ # cluster = instance.cluster "my-cluster"
282
282
  #
283
- # backup = cluster.backup("my-backup")
283
+ # backup = cluster.backup "my-backup"
284
284
  #
285
285
  # if backup
286
286
  # puts backup.backup_id
@@ -303,8 +303,8 @@ module Google
303
303
  #
304
304
  # bigtable = Google::Cloud::Bigtable.new
305
305
  #
306
- # instance = bigtable.instance("my-instance")
307
- # cluster = instance.cluster("my-cluster")
306
+ # instance = bigtable.instance "my-instance"
307
+ # cluster = instance.cluster "my-cluster"
308
308
  #
309
309
  # cluster.backups.all do |backup|
310
310
  # puts backup.backup_id
@@ -329,8 +329,8 @@ module Google
329
329
  #
330
330
  # bigtable = Google::Cloud::Bigtable.new
331
331
  #
332
- # instance = bigtable.instance("my-instance")
333
- # cluster = instance.cluster("my-cluster")
332
+ # instance = bigtable.instance "my-instance"
333
+ # cluster = instance.cluster "my-cluster"
334
334
  # cluster.nodes = 3
335
335
  # job = cluster.save
336
336
  #
@@ -373,8 +373,8 @@ module Google
373
373
  #
374
374
  # bigtable = Google::Cloud::Bigtable.new
375
375
  #
376
- # instance = bigtable.instance("my-instance")
377
- # cluster = instance.cluster("my-cluster")
376
+ # instance = bigtable.instance "my-instance"
377
+ # cluster = instance.cluster "my-cluster"
378
378
  # cluster.delete
379
379
  #
380
380
  def delete
@@ -30,8 +30,8 @@ module Google
30
30
  #
31
31
  # bigtable = Google::Cloud::Bigtable.new
32
32
  #
33
- # instance = bigtable.instance("my-instance")
34
- # table = instance.table("my-table")
33
+ # instance = bigtable.instance "my-instance"
34
+ # table = instance.table "my-table"
35
35
  #
36
36
  # column_family = table.column_families["cf2"]
37
37
  # puts column_family.gc_rule