google-cloud-bigtable 2.6.1 → 2.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/lib/google/cloud/bigtable/app_profile.rb +20 -21
  4. data/lib/google/cloud/bigtable/app_profile/job.rb +4 -4
  5. data/lib/google/cloud/bigtable/app_profile/list.rb +5 -7
  6. data/lib/google/cloud/bigtable/backup.rb +36 -36
  7. data/lib/google/cloud/bigtable/backup/job.rb +8 -8
  8. data/lib/google/cloud/bigtable/backup/list.rb +9 -11
  9. data/lib/google/cloud/bigtable/cluster.rb +15 -15
  10. data/lib/google/cloud/bigtable/cluster/job.rb +2 -2
  11. data/lib/google/cloud/bigtable/column_family.rb +2 -2
  12. data/lib/google/cloud/bigtable/column_family_map.rb +14 -14
  13. data/lib/google/cloud/bigtable/column_range.rb +7 -7
  14. data/lib/google/cloud/bigtable/encryption_info.rb +4 -4
  15. data/lib/google/cloud/bigtable/gc_rule.rb +20 -20
  16. data/lib/google/cloud/bigtable/instance.rb +40 -40
  17. data/lib/google/cloud/bigtable/instance/cluster_map.rb +6 -6
  18. data/lib/google/cloud/bigtable/instance/job.rb +4 -4
  19. data/lib/google/cloud/bigtable/mutation_entry.rb +21 -21
  20. data/lib/google/cloud/bigtable/mutation_operations.rb +34 -34
  21. data/lib/google/cloud/bigtable/policy.rb +4 -4
  22. data/lib/google/cloud/bigtable/project.rb +15 -15
  23. data/lib/google/cloud/bigtable/read_operations.rb +31 -31
  24. data/lib/google/cloud/bigtable/routing_policy.rb +6 -6
  25. data/lib/google/cloud/bigtable/row_filter.rb +28 -28
  26. data/lib/google/cloud/bigtable/row_filter/chain_filter.rb +30 -29
  27. data/lib/google/cloud/bigtable/row_filter/condition_filter.rb +6 -6
  28. data/lib/google/cloud/bigtable/row_filter/interleave_filter.rb +27 -26
  29. data/lib/google/cloud/bigtable/row_range.rb +18 -18
  30. data/lib/google/cloud/bigtable/sample_row_key.rb +1 -1
  31. data/lib/google/cloud/bigtable/status.rb +2 -2
  32. data/lib/google/cloud/bigtable/table.rb +34 -34
  33. data/lib/google/cloud/bigtable/table/cluster_state.rb +1 -1
  34. data/lib/google/cloud/bigtable/table/list.rb +2 -2
  35. data/lib/google/cloud/bigtable/table/restore_job.rb +12 -12
  36. data/lib/google/cloud/bigtable/value_range.rb +18 -18
  37. data/lib/google/cloud/bigtable/version.rb +1 -1
  38. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68dcd0446d6056db7e6f26fbe0d9edea6748e76135ce7cbcc4ec3da4ed7cef28
4
- data.tar.gz: fcb5b099fcee71414de91250901a0bf12385311d67731e3dee3265551b3d700d
3
+ metadata.gz: 81a641fcf7c94e068213a96b5ebc6c9694cf87367ca83c9672a70a08620fcfae
4
+ data.tar.gz: 76079a26712e7c3854cd1b21d519948964465154f7f4fcc779700924e1eb3e3d
5
5
  SHA512:
6
- metadata.gz: cb0a94391f397bac9dea00a4624aa721bc3e891b45a9994908af191f72ac6879bb60a4c0081a02d46437cc7f939eed44a2fe0bc89028f1fc6bcc4fd05dc69d6d
7
- data.tar.gz: 3f8762093f07e17140f092c42a0230a92343647bf356858df6a1e04225a89d3b5b0c849478fc53cb917f525b64dad8c0034a83ce65c8de79f900854001f6cc1e
6
+ metadata.gz: 6daa16efede84fa797bd7d7b440e3a0cd36eb886611a73e68d2fb6c488a1db1ac81ddad61f8261fcc7e6fb2111a4bcc5e0f5a3d54004cd75f2c46e8e65aa53da
7
+ data.tar.gz: 0e86c2513212dde4e9732b4437a89af59d75068e954c52c7b821a2e9527fee8429cb1e4ebec422f33f496fb2bebe7eacbd1a0dc919542deb105cd67948f57315
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 2.6.2 / 2021-08-02
4
+
5
+ #### Documentation
6
+
7
+ * Update inline doc samples to match library code style
8
+
3
9
  ### 2.6.1 / 2021-07-08
4
10
 
5
11
  #### Documentation
@@ -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,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?
@@ -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,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?
@@ -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