google-cloud-bigtable 2.6.1 → 2.6.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +24 -0
  3. data/CONTRIBUTING.md +328 -115
  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 +36 -36
  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/status.rb +2 -2
  34. data/lib/google/cloud/bigtable/table/cluster_state.rb +1 -1
  35. data/lib/google/cloud/bigtable/table/list.rb +2 -2
  36. data/lib/google/cloud/bigtable/table/restore_job.rb +12 -12
  37. data/lib/google/cloud/bigtable/table.rb +34 -34
  38. data/lib/google/cloud/bigtable/value_range.rb +18 -18
  39. data/lib/google/cloud/bigtable/version.rb +1 -1
  40. data/lib/google/cloud/bigtable.rb +2 -0
  41. metadata +3 -3
@@ -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",
@@ -363,12 +363,12 @@ module Google
363
363
  # require "google/cloud/bigtable"
364
364
  #
365
365
  # bigtable = Google::Cloud::Bigtable.new
366
- # instance = bigtable.instance("my-instance")
367
- # cluster = instance.cluster("my-cluster")
366
+ # instance = bigtable.instance "my-instance"
367
+ # cluster = instance.cluster "my-cluster"
368
368
  #
369
- # backup = cluster.backup("my-backup")
369
+ # backup = cluster.backup "my-backup"
370
370
  #
371
- # job = backup.restore("my-new-table")
371
+ # job = backup.restore "my-new-table"
372
372
  #
373
373
  # job.wait_until_done!
374
374
  # job.done? #=> true
@@ -384,13 +384,13 @@ module Google
384
384
  # require "google/cloud/bigtable"
385
385
  #
386
386
  # bigtable = Google::Cloud::Bigtable.new
387
- # instance = bigtable.instance("my-instance")
388
- # cluster = instance.cluster("my-cluster")
387
+ # instance = bigtable.instance "my-instance"
388
+ # cluster = instance.cluster "my-cluster"
389
389
  #
390
- # backup = cluster.backup("my-backup")
390
+ # backup = cluster.backup "my-backup"
391
391
  #
392
- # table_instance = bigtable.instance("my-other-instance")
393
- # job = backup.restore("my-new-table", instance: table_instance)
392
+ # table_instance = bigtable.instance "my-other-instance"
393
+ # job = backup.restore "my-new-table", instance: table_instance
394
394
  #
395
395
  # job.wait_until_done!
396
396
  # job.done? #=> true
@@ -423,10 +423,10 @@ module Google
423
423
  # require "google/cloud/bigtable"
424
424
  #
425
425
  # bigtable = Google::Cloud::Bigtable.new
426
- # instance = bigtable.instance("my-instance")
427
- # cluster = instance.cluster("my-cluster")
426
+ # instance = bigtable.instance "my-instance"
427
+ # cluster = instance.cluster "my-cluster"
428
428
  #
429
- # backup = cluster.backup("my-backup")
429
+ # backup = cluster.backup "my-backup"
430
430
  #
431
431
  # # Update
432
432
  # backup.expire_time = Time.now + 60 * 60 * 7
@@ -458,10 +458,10 @@ module Google
458
458
  # require "google/cloud/bigtable"
459
459
  #
460
460
  # bigtable = Google::Cloud::Bigtable.new
461
- # instance = bigtable.instance("my-instance")
462
- # cluster = instance.cluster("my-cluster")
461
+ # instance = bigtable.instance "my-instance"
462
+ # cluster = instance.cluster "my-cluster"
463
463
  #
464
- # backup = cluster.backup("my-backup")
464
+ # backup = cluster.backup "my-backup"
465
465
  #
466
466
  # backup.delete
467
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
@@ -41,15 +41,15 @@ module Google
41
41
  #
42
42
  # bigtable = Google::Cloud::Bigtable.new
43
43
  #
44
- # table = bigtable.create_table("my-instance", "my-table") do |cfm|
45
- # cfm.add('cf1', gc_rule: Google::Cloud::Bigtable::GcRule.max_versions(5))
46
- # cfm.add('cf2', gc_rule: Google::Cloud::Bigtable::GcRule.max_age(600))
44
+ # table = bigtable.create_table "my-instance", "my-table" do |cfm|
45
+ # cfm.add "cf1", gc_rule: Google::Cloud::Bigtable::GcRule.max_versions(5)
46
+ # cfm.add "cf2", gc_rule: Google::Cloud::Bigtable::GcRule.max_age(600)
47
47
  #
48
48
  # gc_rule = Google::Cloud::Bigtable::GcRule.union(
49
49
  # Google::Cloud::Bigtable::GcRule.max_age(1800),
50
50
  # Google::Cloud::Bigtable::GcRule.max_versions(3)
51
51
  # )
52
- # cfm.add('cf3', gc_rule: gc_rule)
52
+ # cfm.add "cf3", gc_rule: gc_rule
53
53
  # end
54
54
  #
55
55
  # puts table.column_families
@@ -59,15 +59,15 @@ module Google
59
59
  #
60
60
  # bigtable = Google::Cloud::Bigtable.new
61
61
  #
62
- # table = bigtable.table("my-instance", "my-table", perform_lookup: true)
62
+ # table = bigtable.table "my-instance", "my-table", perform_lookup: true
63
63
  #
64
64
  # table.column_families do |cfm|
65
65
  # cfm.add "cf4", gc_rule: Google::Cloud::Bigtable::GcRule.max_age(600)
66
66
  # cfm.add "cf5", gc_rule: Google::Cloud::Bigtable::GcRule.max_versions(5)
67
67
  #
68
- # rule_1 = Google::Cloud::Bigtable::GcRule.max_versions(3)
69
- # rule_2 = Google::Cloud::Bigtable::GcRule.max_age(600)
70
- # rule_union = Google::Cloud::Bigtable::GcRule.union(rule_1, rule_2)
68
+ # rule_1 = Google::Cloud::Bigtable::GcRule.max_versions 3
69
+ # rule_2 = Google::Cloud::Bigtable::GcRule.max_age 600
70
+ # rule_union = Google::Cloud::Bigtable::GcRule.union rule_1, rule_2
71
71
  # cfm.update "cf2", gc_rule: rule_union
72
72
  #
73
73
  # cfm.delete "cf3"
@@ -196,7 +196,7 @@ module Google
196
196
  #
197
197
  # bigtable = Google::Cloud::Bigtable.new
198
198
  #
199
- # table = bigtable.table("my-instance", "my-table", perform_lookup: true)
199
+ # table = bigtable.table "my-instance", "my-table", perform_lookup: true
200
200
  #
201
201
  # table.column_families do |column_families|
202
202
  # column_families.add "cf4", gc_rule: Google::Cloud::Bigtable::GcRule.max_age(600)
@@ -237,12 +237,12 @@ module Google
237
237
  #
238
238
  # bigtable = Google::Cloud::Bigtable.new
239
239
  #
240
- # table = bigtable.table("my-instance", "my-table", perform_lookup: true)
240
+ # table = bigtable.table "my-instance", "my-table", perform_lookup: true
241
241
  #
242
242
  # table.column_families do |column_families|
243
- # rule_1 = Google::Cloud::Bigtable::GcRule.max_versions(3)
244
- # rule_2 = Google::Cloud::Bigtable::GcRule.max_age(600)
245
- # rule_union = Google::Cloud::Bigtable::GcRule.union(rule_1, rule_2)
243
+ # rule_1 = Google::Cloud::Bigtable::GcRule.max_versions 3
244
+ # rule_2 = Google::Cloud::Bigtable::GcRule.max_age 600
245
+ # rule_union = Google::Cloud::Bigtable::GcRule.union rule_1, rule_2
246
246
  #
247
247
  # column_families.update "cf2", gc_rule: rule_union
248
248
  # end
@@ -270,7 +270,7 @@ module Google
270
270
  #
271
271
  # bigtable = Google::Cloud::Bigtable.new
272
272
  #
273
- # table = bigtable.table("my-instance", "my-table", perform_lookup: true)
273
+ # table = bigtable.table "my-instance", "my-table", perform_lookup: true
274
274
  #
275
275
  # table.column_families do |column_families|
276
276
  # column_families.delete "cf3"
@@ -32,7 +32,7 @@ module Google
32
32
  # require "google/cloud/bigtable"
33
33
  #
34
34
  # bigtable = Google::Cloud::Bigtable.new
35
- # table = bigtable.table("my-instance", "my-table")
35
+ # table = bigtable.table "my-instance", "my-table"
36
36
  #
37
37
  # # Range that includes all qualifiers including "user-001" up until "user-010"
38
38
  # table.new_column_range("cf").from("user-001").to("user-010")
@@ -89,7 +89,7 @@ module Google
89
89
  # require "google/cloud/bigtable"
90
90
  #
91
91
  # bigtable = Google::Cloud::Bigtable.new
92
- # table = bigtable.table("my-instance", "my-table")
92
+ # table = bigtable.table "my-instance", "my-table"
93
93
  #
94
94
  # table.new_column_range("cf").from("qualifier-1")
95
95
  #
@@ -97,7 +97,7 @@ module Google
97
97
  # require "google/cloud/bigtable"
98
98
  #
99
99
  # bigtable = Google::Cloud::Bigtable.new
100
- # table = bigtable.table("my-instance", "my-table")
100
+ # table = bigtable.table "my-instance", "my-table"
101
101
  #
102
102
  # table.new_column_range("cf").from("qualifier-1", inclusive: false)
103
103
  #
@@ -122,7 +122,7 @@ module Google
122
122
  # require "google/cloud/bigtable"
123
123
  #
124
124
  # bigtable = Google::Cloud::Bigtable.new
125
- # table = bigtable.table("my-instance", "my-table")
125
+ # table = bigtable.table "my-instance", "my-table"
126
126
  #
127
127
  # table.new_column_range("cf").to("qualifier-10", inclusive: true)
128
128
  #
@@ -130,7 +130,7 @@ module Google
130
130
  # require "google/cloud/bigtable"
131
131
  #
132
132
  # bigtable = Google::Cloud::Bigtable.new
133
- # table = bigtable.table("my-instance", "my-table")
133
+ # table = bigtable.table "my-instance", "my-table"
134
134
  #
135
135
  # table.new_column_range("cf").to("qualifier-10")
136
136
  #
@@ -154,7 +154,7 @@ module Google
154
154
  # require "google/cloud/bigtable"
155
155
  #
156
156
  # bigtable = Google::Cloud::Bigtable.new
157
- # table = bigtable.table("my-instance", "my-table")
157
+ # table = bigtable.table "my-instance", "my-table"
158
158
  #
159
159
  # table.new_column_range("cf").between("qualifier-1", "qualifier-10")
160
160
  #
@@ -173,7 +173,7 @@ module Google
173
173
  # require "google/cloud/bigtable"
174
174
  #
175
175
  # bigtable = Google::Cloud::Bigtable.new
176
- # table = bigtable.table("my-instance", "my-table")
176
+ # table = bigtable.table "my-instance", "my-table"
177
177
  #
178
178
  # table.new_column_range("cf").of("qualifier-1", "qualifier-10")
179
179
  #
@@ -31,10 +31,10 @@ module Google
31
31
  # require "google/cloud/bigtable"
32
32
  #
33
33
  # bigtable = Google::Cloud::Bigtable.new
34
- # instance = bigtable.instance("my-instance")
35
- # cluster = instance.cluster("my-cluster")
34
+ # instance = bigtable.instance "my-instance"
35
+ # cluster = instance.cluster "my-cluster"
36
36
  #
37
- # backup = cluster.backup("my-backup")
37
+ # backup = cluster.backup "my-backup"
38
38
  #
39
39
  # encryption_info = backup.encryption_info
40
40
  # encryption_info.encryption_type #=> :GOOGLE_DEFAULT_ENCRYPTION
@@ -44,7 +44,7 @@ module Google
44
44
  #
45
45
  # bigtable = Google::Cloud::Bigtable.new
46
46
  #
47
- # table = bigtable.table("my-instance", "my-table", view: :ENCRYPTION_VIEW, perform_lookup: true)
47
+ # table = bigtable.table "my-instance", "my-table", view: :ENCRYPTION_VIEW, perform_lookup: true
48
48
  #
49
49
  # table.cluster_states.each do |cs|
50
50
  # puts cs.cluster_name