tugboat 1.3.1 → 2.0.0.RC1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/CHANGELOG.md +12 -8
  4. data/lib/tugboat/cli.rb +8 -7
  5. data/lib/tugboat/config.rb +8 -12
  6. data/lib/tugboat/middleware/add_key.rb +9 -6
  7. data/lib/tugboat/middleware/ask_for_credentials.rb +7 -8
  8. data/lib/tugboat/middleware/check_configuration.rb +1 -1
  9. data/lib/tugboat/middleware/check_credentials.rb +4 -2
  10. data/lib/tugboat/middleware/config.rb +3 -4
  11. data/lib/tugboat/middleware/create_droplet.rb +32 -26
  12. data/lib/tugboat/middleware/destroy_droplet.rb +6 -6
  13. data/lib/tugboat/middleware/destroy_image.rb +6 -6
  14. data/lib/tugboat/middleware/find_droplet.rb +20 -16
  15. data/lib/tugboat/middleware/find_image.rb +17 -10
  16. data/lib/tugboat/middleware/halt_droplet.rb +8 -8
  17. data/lib/tugboat/middleware/info_droplet.rb +38 -25
  18. data/lib/tugboat/middleware/info_image.rb +5 -5
  19. data/lib/tugboat/middleware/inject_client.rb +3 -9
  20. data/lib/tugboat/middleware/list_droplets.rb +6 -4
  21. data/lib/tugboat/middleware/list_images.rb +28 -23
  22. data/lib/tugboat/middleware/list_regions.rb +3 -3
  23. data/lib/tugboat/middleware/list_sizes.rb +3 -3
  24. data/lib/tugboat/middleware/list_ssh_keys.rb +5 -4
  25. data/lib/tugboat/middleware/password_reset.rb +7 -7
  26. data/lib/tugboat/middleware/rebuild_droplet.rb +8 -8
  27. data/lib/tugboat/middleware/resize_droplet.rb +7 -7
  28. data/lib/tugboat/middleware/restart_droplet.rb +8 -8
  29. data/lib/tugboat/middleware/snapshot_droplet.rb +6 -6
  30. data/lib/tugboat/middleware/ssh_droplet.rb +3 -1
  31. data/lib/tugboat/middleware/start_droplet.rb +6 -6
  32. data/lib/tugboat/middleware/wait_for_state.rb +6 -6
  33. data/lib/tugboat/version.rb +1 -1
  34. data/spec/cli/add_key_spec.rb +16 -9
  35. data/spec/cli/authorize_cli_spec.rb +24 -29
  36. data/spec/cli/config_cli_spec.rb +57 -0
  37. data/spec/cli/create_cli_spec.rb +18 -28
  38. data/spec/cli/debug_cli_spec.rb +8 -14
  39. data/spec/cli/destroy_cli_spec.rb +39 -50
  40. data/spec/cli/destroy_image_cli_spec.rb +33 -39
  41. data/spec/cli/droplets_cli_spec.rb +15 -12
  42. data/spec/cli/halt_cli_spec.rb +50 -46
  43. data/spec/cli/images_cli_spec.rb +134 -58
  44. data/spec/cli/info_cli_spec.rb +139 -139
  45. data/spec/cli/info_image_cli_spec.rb +113 -26
  46. data/spec/cli/keys_cli_spec.rb +7 -5
  47. data/spec/cli/password_reset_cli_spec.rb +46 -44
  48. data/spec/cli/rebuild_cli_spec.rb +187 -101
  49. data/spec/cli/regions_cli_spec.rb +13 -6
  50. data/spec/cli/resize_cli_spec.rb +51 -48
  51. data/spec/cli/restart_cli_spec.rb +41 -39
  52. data/spec/cli/sizes_cli_spec.rb +13 -8
  53. data/spec/cli/snapshot_cli_spec.rb +36 -37
  54. data/spec/cli/ssh_cli_spec.rb +7 -15
  55. data/spec/cli/start_cli_spec.rb +39 -35
  56. data/spec/cli/verify_cli_spec.rb +20 -12
  57. data/spec/cli/wait_cli_spec.rb +43 -27
  58. data/spec/config_spec.rb +19 -25
  59. data/spec/fixtures/create_droplet.json +44 -0
  60. data/spec/fixtures/create_ssh_key.json +4 -4
  61. data/spec/fixtures/create_ssh_key_from_file.json +8 -0
  62. data/spec/fixtures/droplet_start_response.json +13 -0
  63. data/spec/fixtures/not_found.json +4 -0
  64. data/spec/fixtures/password_reset_response.json +13 -0
  65. data/spec/fixtures/power_cycle_response.json +13 -0
  66. data/spec/fixtures/resize_droplet.json +13 -0
  67. data/spec/fixtures/restart_response.json +13 -0
  68. data/spec/fixtures/show_coreos_image.json +23 -0
  69. data/spec/fixtures/show_droplet.json +90 -11
  70. data/spec/fixtures/show_droplet_inactive.json +90 -11
  71. data/spec/fixtures/show_droplets.json +249 -30
  72. data/spec/fixtures/show_droplets_empty.json +5 -2
  73. data/spec/fixtures/show_image.json +14 -7
  74. data/spec/fixtures/show_images.json +1075 -13
  75. data/spec/fixtures/show_images_global.json +25 -16
  76. data/spec/fixtures/show_keys.json +15 -7
  77. data/spec/fixtures/show_redmine_image.json +24 -0
  78. data/spec/fixtures/show_regions.json +181 -12
  79. data/spec/fixtures/show_sizes.json +178 -9
  80. data/spec/fixtures/shutdown_response.json +13 -0
  81. data/spec/fixtures/snapshot_response.json +13 -0
  82. data/spec/fixtures/ubuntu_image_9801951.json +24 -0
  83. data/spec/middleware/check_credentials_spec.rb +4 -3
  84. data/spec/middleware/inject_client_spec.rb +2 -2
  85. data/spec/shared/environment.rb +6 -7
  86. data/spec/spec_helper.rb +1 -1
  87. data/tugboat.gemspec +39 -19
  88. metadata +50 -14
  89. data/spec/fixtures/show_droplet_fuzzy.json +0 -13
  90. data/spec/fixtures/show_droplets_fuzzy.json +0 -35
  91. data/spec/fixtures/show_droplets_inactive.json +0 -37
@@ -1,15 +1,1077 @@
1
1
  {
2
- "status": "OK",
3
- "images": [
4
- {
5
- "id": 466,
6
- "name": "NYTD Backup 1-18-2012",
7
- "distribution": "Ubuntu"
8
- },
9
- {
10
- "id": 478,
11
- "name": "NLP Final",
12
- "distribution": "Ubuntu"
2
+ "images": [
3
+ {
4
+ "id": 12789325,
5
+ "name": "745.1.0 (alpha)",
6
+ "distribution": "CoreOS",
7
+ "slug": "coreos-alpha",
8
+ "public": true,
9
+ "regions": [
10
+ "nyc1",
11
+ "sfo1",
12
+ "nyc2",
13
+ "ams2",
14
+ "sgp1",
15
+ "lon1",
16
+ "nyc3",
17
+ "ams3",
18
+ "fra1"
19
+ ],
20
+ "created_at": "2015-07-17T13:34:11Z",
21
+ "min_disk_size": 20,
22
+ "type": "snapshot"
23
+ },
24
+ {
25
+ "id": 12789350,
26
+ "name": "723.3.0 (beta)",
27
+ "distribution": "CoreOS",
28
+ "slug": "coreos-beta",
29
+ "public": true,
30
+ "regions": [
31
+ "nyc1",
32
+ "sfo1",
33
+ "nyc2",
34
+ "ams2",
35
+ "sgp1",
36
+ "lon1",
37
+ "nyc3",
38
+ "ams3",
39
+ "fra1"
40
+ ],
41
+ "created_at": "2015-07-17T13:35:56Z",
42
+ "min_disk_size": 20,
43
+ "type": "snapshot"
44
+ },
45
+ {
46
+ "id": 12789351,
47
+ "name": "717.3.0 (stable)",
48
+ "distribution": "CoreOS",
49
+ "slug": "coreos-stable",
50
+ "public": true,
51
+ "regions": [
52
+ "nyc1",
53
+ "sfo1",
54
+ "nyc2",
55
+ "ams2",
56
+ "sgp1",
57
+ "lon1",
58
+ "nyc3",
59
+ "ams3",
60
+ "fra1"
61
+ ],
62
+ "created_at": "2015-07-17T13:36:12Z",
63
+ "min_disk_size": 20,
64
+ "type": "snapshot"
65
+ },
66
+ {
67
+ "id": 6372321,
68
+ "name": "5.10 x64",
69
+ "distribution": "CentOS",
70
+ "slug": "centos-5-8-x64",
71
+ "public": true,
72
+ "regions": [
73
+ "nyc1",
74
+ "ams1",
75
+ "sfo1",
76
+ "nyc2",
77
+ "ams2",
78
+ "sgp1",
79
+ "lon1",
80
+ "nyc3",
81
+ "ams3",
82
+ "fra1"
83
+ ],
84
+ "created_at": "2014-09-26T16:40:18Z",
85
+ "min_disk_size": 20,
86
+ "type": "snapshot"
87
+ },
88
+ {
89
+ "id": 6372425,
90
+ "name": "5.10 x32",
91
+ "distribution": "CentOS",
92
+ "slug": "centos-5-8-x32",
93
+ "public": true,
94
+ "regions": [
95
+ "nyc1",
96
+ "ams1",
97
+ "sfo1",
98
+ "nyc2",
99
+ "ams2",
100
+ "sgp1",
101
+ "lon1",
102
+ "nyc3",
103
+ "ams3",
104
+ "fra1"
105
+ ],
106
+ "created_at": "2014-09-26T16:45:29Z",
107
+ "min_disk_size": 20,
108
+ "type": "snapshot"
109
+ },
110
+ {
111
+ "id": 6372581,
112
+ "name": "6.0 x64",
113
+ "distribution": "Debian",
114
+ "slug": "debian-6-0-x64",
115
+ "public": true,
116
+ "regions": [
117
+ "nyc1",
118
+ "ams1",
119
+ "sfo1",
120
+ "nyc2",
121
+ "ams2",
122
+ "sgp1",
123
+ "lon1",
124
+ "nyc3",
125
+ "ams3",
126
+ "fra1"
127
+ ],
128
+ "created_at": "2014-09-26T16:56:00Z",
129
+ "min_disk_size": 20,
130
+ "type": "snapshot"
131
+ },
132
+ {
133
+ "id": 6372662,
134
+ "name": "6.0 x32",
135
+ "distribution": "Debian",
136
+ "slug": "debian-6-0-x32",
137
+ "public": true,
138
+ "regions": [
139
+ "nyc1",
140
+ "ams1",
141
+ "sfo1",
142
+ "nyc2",
143
+ "ams2",
144
+ "sgp1",
145
+ "lon1",
146
+ "nyc3",
147
+ "ams3",
148
+ "fra1"
149
+ ],
150
+ "created_at": "2014-09-26T17:00:21Z",
151
+ "min_disk_size": 20,
152
+ "type": "snapshot"
153
+ },
154
+ {
155
+ "id": 9640922,
156
+ "name": "21 x64",
157
+ "distribution": "Fedora",
158
+ "slug": "fedora-21-x64",
159
+ "public": true,
160
+ "regions": [
161
+ "nyc1",
162
+ "ams1",
163
+ "sfo1",
164
+ "nyc2",
165
+ "ams2",
166
+ "sgp1",
167
+ "lon1",
168
+ "nyc3",
169
+ "ams3",
170
+ "fra1"
171
+ ],
172
+ "created_at": "2015-01-02T19:06:09Z",
173
+ "min_disk_size": 20,
174
+ "type": "snapshot"
175
+ },
176
+ {
177
+ "id": 9801951,
178
+ "name": "14.10 x32",
179
+ "distribution": "Ubuntu",
180
+ "slug": "ubuntu-14-10-x32",
181
+ "public": true,
182
+ "regions": [
183
+ "nyc1",
184
+ "ams1",
185
+ "sfo1",
186
+ "nyc2",
187
+ "ams2",
188
+ "sgp1",
189
+ "lon1",
190
+ "nyc3",
191
+ "ams3",
192
+ "fra1"
193
+ ],
194
+ "created_at": "2015-01-08T18:41:22Z",
195
+ "min_disk_size": 20,
196
+ "type": "snapshot"
197
+ },
198
+ {
199
+ "id": 9801954,
200
+ "name": "14.10 x64",
201
+ "distribution": "Ubuntu",
202
+ "slug": "ubuntu-14-10-x64",
203
+ "public": true,
204
+ "regions": [
205
+ "nyc1",
206
+ "ams1",
207
+ "sfo1",
208
+ "nyc2",
209
+ "ams2",
210
+ "sgp1",
211
+ "lon1",
212
+ "nyc3",
213
+ "ams3",
214
+ "fra1"
215
+ ],
216
+ "created_at": "2015-01-08T18:41:29Z",
217
+ "min_disk_size": 20,
218
+ "type": "snapshot"
219
+ },
220
+ {
221
+ "id": 10144573,
222
+ "name": "10.1",
223
+ "distribution": "FreeBSD",
224
+ "slug": "freebsd-10-1-x64",
225
+ "public": true,
226
+ "regions": [
227
+ "nyc1",
228
+ "ams1",
229
+ "sfo1",
230
+ "nyc2",
231
+ "ams2",
232
+ "sgp1",
233
+ "lon1",
234
+ "nyc3",
235
+ "ams3",
236
+ "fra1"
237
+ ],
238
+ "created_at": "2015-01-20T20:04:34Z",
239
+ "min_disk_size": 20,
240
+ "type": "snapshot"
241
+ },
242
+ {
243
+ "id": 10321756,
244
+ "name": "12.04.5 x64",
245
+ "distribution": "Ubuntu",
246
+ "slug": "ubuntu-12-04-x64",
247
+ "public": true,
248
+ "regions": [
249
+ "nyc1",
250
+ "ams1",
251
+ "sfo1",
252
+ "nyc2",
253
+ "ams2",
254
+ "sgp1",
255
+ "lon1",
256
+ "nyc3",
257
+ "ams3",
258
+ "fra1"
259
+ ],
260
+ "created_at": "2015-01-28T15:50:38Z",
261
+ "min_disk_size": 20,
262
+ "type": "snapshot"
263
+ },
264
+ {
265
+ "id": 10321777,
266
+ "name": "12.04.5 x32",
267
+ "distribution": "Ubuntu",
268
+ "slug": "ubuntu-12-04-x32",
269
+ "public": true,
270
+ "regions": [
271
+ "nyc1",
272
+ "ams1",
273
+ "sfo1",
274
+ "nyc2",
275
+ "ams2",
276
+ "sgp1",
277
+ "lon1",
278
+ "nyc3",
279
+ "ams3",
280
+ "fra1"
281
+ ],
282
+ "created_at": "2015-01-28T15:54:17Z",
283
+ "min_disk_size": 20,
284
+ "type": "snapshot"
285
+ },
286
+ {
287
+ "id": 10322059,
288
+ "name": "7.0 x64",
289
+ "distribution": "Debian",
290
+ "slug": "debian-7-0-x64",
291
+ "public": true,
292
+ "regions": [
293
+ "nyc1",
294
+ "ams1",
295
+ "sfo1",
296
+ "nyc2",
297
+ "ams2",
298
+ "sgp1",
299
+ "lon1",
300
+ "nyc3",
301
+ "ams3",
302
+ "fra1"
303
+ ],
304
+ "created_at": "2015-01-28T16:09:29Z",
305
+ "min_disk_size": 20,
306
+ "type": "snapshot"
307
+ },
308
+ {
309
+ "id": 10322378,
310
+ "name": "7.0 x32",
311
+ "distribution": "Debian",
312
+ "slug": "debian-7-0-x32",
313
+ "public": true,
314
+ "regions": [
315
+ "nyc1",
316
+ "ams1",
317
+ "sfo1",
318
+ "nyc2",
319
+ "ams2",
320
+ "sgp1",
321
+ "lon1",
322
+ "nyc3",
323
+ "ams3",
324
+ "fra1"
325
+ ],
326
+ "created_at": "2015-01-28T16:23:04Z",
327
+ "min_disk_size": 20,
328
+ "type": "snapshot"
329
+ },
330
+ {
331
+ "id": 10322623,
332
+ "name": "7 x64",
333
+ "distribution": "CentOS",
334
+ "slug": "centos-7-0-x64",
335
+ "public": true,
336
+ "regions": [
337
+ "nyc1",
338
+ "ams1",
339
+ "sfo1",
340
+ "nyc2",
341
+ "ams2",
342
+ "sgp1",
343
+ "lon1",
344
+ "nyc3",
345
+ "ams3",
346
+ "fra1"
347
+ ],
348
+ "created_at": "2015-01-28T16:36:06Z",
349
+ "min_disk_size": 20,
350
+ "type": "snapshot"
351
+ },
352
+ {
353
+ "id": 11523060,
354
+ "name": "6.5 x32",
355
+ "distribution": "CentOS",
356
+ "slug": "centos-6-5-x32",
357
+ "public": true,
358
+ "regions": [
359
+ "nyc1",
360
+ "ams1",
361
+ "sfo1",
362
+ "nyc2",
363
+ "ams2",
364
+ "sgp1",
365
+ "lon1",
366
+ "nyc3",
367
+ "ams3",
368
+ "fra1"
369
+ ],
370
+ "created_at": "2015-04-21T22:03:12Z",
371
+ "min_disk_size": 20,
372
+ "type": "snapshot"
373
+ },
374
+ {
375
+ "id": 11523085,
376
+ "name": "6.5 x64",
377
+ "distribution": "CentOS",
378
+ "slug": "centos-6-5-x64",
379
+ "public": true,
380
+ "regions": [
381
+ "nyc1",
382
+ "ams1",
383
+ "sfo1",
384
+ "nyc2",
385
+ "ams2",
386
+ "sgp1",
387
+ "lon1",
388
+ "nyc3",
389
+ "ams3",
390
+ "fra1"
391
+ ],
392
+ "created_at": "2015-04-21T22:06:33Z",
393
+ "min_disk_size": 20,
394
+ "type": "snapshot"
395
+ },
396
+ {
397
+ "id": 12065782,
398
+ "name": "22 x64",
399
+ "distribution": "Fedora",
400
+ "slug": "fedora-22-x64",
401
+ "public": true,
402
+ "regions": [
403
+ "sfo1",
404
+ "nyc2",
405
+ "ams2",
406
+ "sgp1",
407
+ "lon1",
408
+ "nyc3",
409
+ "ams3",
410
+ "fra1"
411
+ ],
412
+ "created_at": "2015-05-28T19:54:54Z",
413
+ "min_disk_size": 20,
414
+ "type": "snapshot"
415
+ },
416
+ {
417
+ "id": 12658446,
418
+ "name": "15.04 x64",
419
+ "distribution": "Ubuntu",
420
+ "slug": "ubuntu-15-04-x64",
421
+ "public": true,
422
+ "regions": [
423
+ "nyc1",
424
+ "sfo1",
425
+ "nyc2",
426
+ "ams2",
427
+ "sgp1",
428
+ "lon1",
429
+ "nyc3",
430
+ "ams3",
431
+ "fra1"
432
+ ],
433
+ "created_at": "2015-07-07T17:56:28Z",
434
+ "min_disk_size": 20,
435
+ "type": "snapshot"
436
+ },
437
+ {
438
+ "id": 12660649,
439
+ "name": "15.04 x32",
440
+ "distribution": "Ubuntu",
441
+ "slug": "ubuntu-15-04-x32",
442
+ "public": true,
443
+ "regions": [
444
+ "nyc1",
445
+ "sfo1",
446
+ "nyc2",
447
+ "ams2",
448
+ "sgp1",
449
+ "lon1",
450
+ "nyc3",
451
+ "ams3",
452
+ "fra1"
453
+ ],
454
+ "created_at": "2015-07-07T21:58:02Z",
455
+ "min_disk_size": 20,
456
+ "type": "snapshot"
457
+ },
458
+ {
459
+ "id": 12778278,
460
+ "name": "8.1 x64",
461
+ "distribution": "Debian",
462
+ "slug": "debian-8-x64",
463
+ "public": true,
464
+ "regions": [
465
+ "nyc1",
466
+ "sfo1",
467
+ "nyc2",
468
+ "ams2",
469
+ "sgp1",
470
+ "lon1",
471
+ "nyc3",
472
+ "ams3",
473
+ "fra1"
474
+ ],
475
+ "created_at": "2015-07-16T18:49:14Z",
476
+ "min_disk_size": 20,
477
+ "type": "snapshot"
478
+ },
479
+ {
480
+ "id": 12778337,
481
+ "name": "8.1 x32",
482
+ "distribution": "Debian",
483
+ "slug": "debian-8-x32",
484
+ "public": true,
485
+ "regions": [
486
+ "nyc1",
487
+ "sfo1",
488
+ "nyc2",
489
+ "ams2",
490
+ "sgp1",
491
+ "lon1",
492
+ "nyc3",
493
+ "ams3",
494
+ "fra1"
495
+ ],
496
+ "created_at": "2015-07-16T19:12:10Z",
497
+ "min_disk_size": 20,
498
+ "type": "snapshot"
499
+ },
500
+ {
501
+ "id": 12790298,
502
+ "name": "14.04 x32",
503
+ "distribution": "Ubuntu",
504
+ "slug": "ubuntu-14-04-x32",
505
+ "public": true,
506
+ "regions": [
507
+ "nyc1",
508
+ "ams1",
509
+ "sfo1",
510
+ "nyc2",
511
+ "ams2",
512
+ "sgp1",
513
+ "lon1",
514
+ "nyc3",
515
+ "ams3",
516
+ "fra1"
517
+ ],
518
+ "created_at": "2015-07-17T16:34:00Z",
519
+ "min_disk_size": 20,
520
+ "type": "snapshot"
521
+ },
522
+ {
523
+ "id": 12790328,
524
+ "name": "14.04 x64",
525
+ "distribution": "Ubuntu",
526
+ "slug": "ubuntu-14-04-x64",
527
+ "public": true,
528
+ "regions": [
529
+ "nyc1",
530
+ "ams1",
531
+ "sfo1",
532
+ "nyc2",
533
+ "ams2",
534
+ "sgp1",
535
+ "lon1",
536
+ "nyc3",
537
+ "ams3",
538
+ "fra1"
539
+ ],
540
+ "created_at": "2015-07-17T16:39:08Z",
541
+ "min_disk_size": 20,
542
+ "type": "snapshot"
543
+ },
544
+ {
545
+ "id": 10163059,
546
+ "name": "FreeBSD AMP on 10.1",
547
+ "distribution": "FreeBSD",
548
+ "slug": "freebsd-amp",
549
+ "public": true,
550
+ "regions": [
551
+ "nyc1",
552
+ "ams1",
553
+ "sfo1",
554
+ "nyc2",
555
+ "ams2",
556
+ "sgp1",
557
+ "lon1",
558
+ "nyc3",
559
+ "ams3",
560
+ "fra1"
561
+ ],
562
+ "created_at": "2015-01-21T15:45:44Z",
563
+ "min_disk_size": 20,
564
+ "type": "snapshot"
565
+ },
566
+ {
567
+ "id": 11132249,
568
+ "name": "Mumble Server (murmur) on 14.04",
569
+ "distribution": "Ubuntu",
570
+ "slug": "mumble",
571
+ "public": true,
572
+ "regions": [
573
+ "nyc1",
574
+ "ams1",
575
+ "sfo1",
576
+ "nyc2",
577
+ "ams2",
578
+ "sgp1",
579
+ "lon1",
580
+ "nyc3",
581
+ "ams3",
582
+ "fra1"
583
+ ],
584
+ "created_at": "2015-03-23T14:49:58Z",
585
+ "min_disk_size": 20,
586
+ "type": "snapshot"
587
+ },
588
+ {
589
+ "id": 11146541,
590
+ "name": "LAMP on 14.04",
591
+ "distribution": "Ubuntu",
592
+ "slug": "lamp",
593
+ "public": true,
594
+ "regions": [
595
+ "nyc1",
596
+ "ams1",
597
+ "sfo1",
598
+ "nyc2",
599
+ "ams2",
600
+ "sgp1",
601
+ "lon1",
602
+ "nyc3",
603
+ "ams3",
604
+ "fra1"
605
+ ],
606
+ "created_at": "2015-03-24T16:13:34Z",
607
+ "min_disk_size": 20,
608
+ "type": "snapshot"
609
+ },
610
+ {
611
+ "id": 11146558,
612
+ "name": "LEMP on 14.04",
613
+ "distribution": "Ubuntu",
614
+ "slug": "lemp",
615
+ "public": true,
616
+ "regions": [
617
+ "nyc1",
618
+ "ams1",
619
+ "sfo1",
620
+ "nyc2",
621
+ "ams2",
622
+ "sgp1",
623
+ "lon1",
624
+ "nyc3",
625
+ "ams3",
626
+ "fra1"
627
+ ],
628
+ "created_at": "2015-03-24T16:16:44Z",
629
+ "min_disk_size": 20,
630
+ "type": "snapshot"
631
+ },
632
+ {
633
+ "id": 11146864,
634
+ "name": "MEAN on 14.04",
635
+ "distribution": "Ubuntu",
636
+ "slug": "mean",
637
+ "public": true,
638
+ "regions": [
639
+ "nyc1",
640
+ "ams1",
641
+ "sfo1",
642
+ "nyc2",
643
+ "ams2",
644
+ "sgp1",
645
+ "lon1",
646
+ "nyc3",
647
+ "ams3",
648
+ "fra1"
649
+ ],
650
+ "created_at": "2015-03-24T17:10:43Z",
651
+ "min_disk_size": 20,
652
+ "type": "snapshot"
653
+ },
654
+ {
655
+ "id": 11163798,
656
+ "name": "Joomla! 3.4.1 on 14.04",
657
+ "distribution": "Ubuntu",
658
+ "slug": "joomla",
659
+ "public": true,
660
+ "regions": [
661
+ "nyc1",
662
+ "ams1",
663
+ "sfo1",
664
+ "nyc2",
665
+ "ams2",
666
+ "sgp1",
667
+ "lon1",
668
+ "nyc3",
669
+ "ams3",
670
+ "fra1"
671
+ ],
672
+ "created_at": "2015-03-25T21:19:33Z",
673
+ "min_disk_size": 20,
674
+ "type": "snapshot"
675
+ },
676
+ {
677
+ "id": 11774848,
678
+ "name": "Drone on 14.04",
679
+ "distribution": "Ubuntu",
680
+ "slug": "drone",
681
+ "public": true,
682
+ "regions": [
683
+ "nyc1",
684
+ "ams1",
685
+ "sfo1",
686
+ "nyc2",
687
+ "ams2",
688
+ "sgp1",
689
+ "lon1",
690
+ "nyc3",
691
+ "ams3",
692
+ "fra1"
693
+ ],
694
+ "created_at": "2015-05-08T14:39:12Z",
695
+ "min_disk_size": 20,
696
+ "type": "snapshot"
697
+ },
698
+ {
699
+ "id": 11876697,
700
+ "name": "Magento 1.9.1.1 on 14.04",
701
+ "distribution": "Ubuntu",
702
+ "slug": "magento",
703
+ "public": true,
704
+ "regions": [
705
+ "nyc1",
706
+ "ams1",
707
+ "sfo1",
708
+ "nyc2",
709
+ "ams2",
710
+ "sgp1",
711
+ "lon1",
712
+ "nyc3",
713
+ "ams3",
714
+ "fra1"
715
+ ],
716
+ "created_at": "2015-05-15T15:58:37Z",
717
+ "min_disk_size": 20,
718
+ "type": "snapshot"
719
+ },
720
+ {
721
+ "id": 12035275,
722
+ "name": "Ghost 0.6.4 on 14.04",
723
+ "distribution": "Ubuntu",
724
+ "slug": "ghost",
725
+ "public": true,
726
+ "regions": [
727
+ "nyc1",
728
+ "ams1",
729
+ "sfo1",
730
+ "nyc2",
731
+ "ams2",
732
+ "sgp1",
733
+ "lon1",
734
+ "nyc3",
735
+ "ams3",
736
+ "fra1"
737
+ ],
738
+ "created_at": "2015-05-26T18:49:55Z",
739
+ "min_disk_size": 20,
740
+ "type": "snapshot"
741
+ },
742
+ {
743
+ "id": 12035706,
744
+ "name": "Ruby on Rails on 14.04 (Postgres, Nginx, Unicorn)",
745
+ "distribution": "Ubuntu",
746
+ "slug": "ruby-on-rails",
747
+ "public": true,
748
+ "regions": [
749
+ "nyc1",
750
+ "ams1",
751
+ "sfo1",
752
+ "nyc2",
753
+ "ams2",
754
+ "sgp1",
755
+ "lon1",
756
+ "nyc3",
757
+ "ams3",
758
+ "fra1"
759
+ ],
760
+ "created_at": "2015-05-26T19:50:39Z",
761
+ "min_disk_size": 20,
762
+ "type": "snapshot"
763
+ },
764
+ {
765
+ "id": 12333784,
766
+ "name": "ownCloud 8.0.4 on 14.04",
767
+ "distribution": "Ubuntu",
768
+ "slug": "owncloud",
769
+ "public": true,
770
+ "regions": [
771
+ "nyc1",
772
+ "ams1",
773
+ "sfo1",
774
+ "nyc2",
775
+ "ams2",
776
+ "sgp1",
777
+ "lon1",
778
+ "nyc3",
779
+ "ams3",
780
+ "fra1"
781
+ ],
782
+ "created_at": "2015-06-15T16:00:42Z",
783
+ "min_disk_size": 20,
784
+ "type": "snapshot"
785
+ },
786
+ {
787
+ "id": 12394820,
788
+ "name": "Drupal 7.38 on 14.04",
789
+ "distribution": "Ubuntu",
790
+ "slug": "drupal",
791
+ "public": true,
792
+ "regions": [
793
+ "nyc1",
794
+ "ams1",
795
+ "sfo1",
796
+ "nyc2",
797
+ "ams2",
798
+ "sgp1",
799
+ "lon1",
800
+ "nyc3",
801
+ "ams3",
802
+ "fra1"
803
+ ],
804
+ "created_at": "2015-06-19T18:59:24Z",
805
+ "min_disk_size": 20,
806
+ "type": "snapshot"
807
+ },
808
+ {
809
+ "id": 12466201,
810
+ "name": "Dokku v0.3.19 on 14.04",
811
+ "distribution": "Ubuntu",
812
+ "slug": "dokku",
813
+ "public": true,
814
+ "regions": [
815
+ "nyc1",
816
+ "ams1",
817
+ "sfo1",
818
+ "nyc2",
819
+ "ams2",
820
+ "sgp1",
821
+ "lon1",
822
+ "nyc3",
823
+ "ams3",
824
+ "fra1"
825
+ ],
826
+ "created_at": "2015-06-24T18:05:28Z",
827
+ "min_disk_size": 20,
828
+ "type": "snapshot"
829
+ },
830
+ {
831
+ "id": 12467027,
832
+ "name": "MongoDB 3.0.4 on 14.04",
833
+ "distribution": "Ubuntu",
834
+ "slug": "mongodb",
835
+ "public": true,
836
+ "regions": [
837
+ "nyc1",
838
+ "ams1",
839
+ "sfo1",
840
+ "nyc2",
841
+ "ams2",
842
+ "sgp1",
843
+ "lon1",
844
+ "nyc3",
845
+ "ams3",
846
+ "fra1"
847
+ ],
848
+ "created_at": "2015-06-24T20:11:39Z",
849
+ "min_disk_size": 20,
850
+ "type": "snapshot"
851
+ },
852
+ {
853
+ "id": 12467797,
854
+ "name": "node-v0.12.5 on 14.04",
855
+ "distribution": "Ubuntu",
856
+ "slug": "node",
857
+ "public": true,
858
+ "regions": [
859
+ "nyc1",
860
+ "ams1",
861
+ "sfo1",
862
+ "nyc2",
863
+ "ams2",
864
+ "sgp1",
865
+ "lon1",
866
+ "nyc3",
867
+ "ams3",
868
+ "fra1"
869
+ ],
870
+ "created_at": "2015-06-24T21:10:58Z",
871
+ "min_disk_size": 20,
872
+ "type": "snapshot"
873
+ },
874
+ {
875
+ "id": 12540744,
876
+ "name": "Cassandra on 14.04",
877
+ "distribution": "Ubuntu",
878
+ "slug": "cassandra",
879
+ "public": true,
880
+ "regions": [
881
+ "nyc1",
882
+ "ams1",
883
+ "sfo1",
884
+ "nyc2",
885
+ "ams2",
886
+ "sgp1",
887
+ "lon1",
888
+ "nyc3",
889
+ "ams3",
890
+ "fra1"
891
+ ],
892
+ "created_at": "2015-06-29T15:57:04Z",
893
+ "min_disk_size": 30,
894
+ "type": "snapshot"
895
+ },
896
+ {
897
+ "id": 12542038,
898
+ "name": "ELK Logging Stack on 14.04",
899
+ "distribution": "Ubuntu",
900
+ "slug": "elk",
901
+ "public": true,
902
+ "regions": [
903
+ "nyc1",
904
+ "ams1",
905
+ "sfo1",
906
+ "nyc2",
907
+ "ams2",
908
+ "sgp1",
909
+ "lon1",
910
+ "nyc3",
911
+ "ams3",
912
+ "fra1"
913
+ ],
914
+ "created_at": "2015-06-29T19:54:00Z",
915
+ "min_disk_size": 20,
916
+ "type": "snapshot"
917
+ },
918
+ {
919
+ "id": 12702571,
920
+ "name": "GitLab 7.12.2 CE on 14.04",
921
+ "distribution": "Ubuntu",
922
+ "slug": "gitlab",
923
+ "public": true,
924
+ "regions": [
925
+ "nyc1",
926
+ "ams1",
927
+ "sfo1",
928
+ "nyc2",
929
+ "ams2",
930
+ "sgp1",
931
+ "lon1",
932
+ "nyc3",
933
+ "ams3",
934
+ "fra1"
935
+ ],
936
+ "created_at": "2015-07-10T16:34:29Z",
937
+ "min_disk_size": 20,
938
+ "type": "snapshot"
939
+ },
940
+ {
941
+ "id": 12740613,
942
+ "name": "WordPress on 14.04",
943
+ "distribution": "Ubuntu",
944
+ "slug": "wordpress",
945
+ "public": true,
946
+ "regions": [
947
+ "nyc1",
948
+ "ams1",
949
+ "sfo1",
950
+ "nyc2",
951
+ "ams2",
952
+ "sgp1",
953
+ "lon1",
954
+ "nyc3",
955
+ "ams3",
956
+ "fra1"
957
+ ],
958
+ "created_at": "2015-07-13T20:13:10Z",
959
+ "min_disk_size": 30,
960
+ "type": "snapshot"
961
+ },
962
+ {
963
+ "id": 12740667,
964
+ "name": "Django on 14.04",
965
+ "distribution": "Ubuntu",
966
+ "slug": "django",
967
+ "public": true,
968
+ "regions": [
969
+ "nyc1",
970
+ "ams1",
971
+ "sfo1",
972
+ "nyc2",
973
+ "ams2",
974
+ "sgp1",
975
+ "lon1",
976
+ "nyc3",
977
+ "ams3",
978
+ "fra1"
979
+ ],
980
+ "created_at": "2015-07-13T20:20:06Z",
981
+ "min_disk_size": 20,
982
+ "type": "snapshot"
983
+ },
984
+ {
985
+ "id": 12764973,
986
+ "name": "Docker 1.7.1 on 14.04",
987
+ "distribution": "Ubuntu",
988
+ "slug": "docker",
989
+ "public": true,
990
+ "regions": [
991
+ "nyc1",
992
+ "ams1",
993
+ "sfo1",
994
+ "nyc2",
995
+ "ams2",
996
+ "sgp1",
997
+ "lon1",
998
+ "nyc3",
999
+ "ams3",
1000
+ "fra1"
1001
+ ],
1002
+ "created_at": "2015-07-15T16:21:09Z",
1003
+ "min_disk_size": 20,
1004
+ "type": "snapshot"
1005
+ },
1006
+ {
1007
+ "id": 11716043,
1008
+ "name": "MediaWiki 1.24.2 on 14.04",
1009
+ "distribution": "Ubuntu",
1010
+ "slug": "mediawiki",
1011
+ "public": true,
1012
+ "regions": [
1013
+ "nyc1",
1014
+ "ams1",
1015
+ "sfo1",
1016
+ "nyc2",
1017
+ "ams2",
1018
+ "sgp1",
1019
+ "lon1",
1020
+ "nyc3",
1021
+ "ams3",
1022
+ "fra1"
1023
+ ],
1024
+ "created_at": "2015-05-04T18:15:02Z",
1025
+ "min_disk_size": 20,
1026
+ "type": "snapshot"
1027
+ },
1028
+ {
1029
+ "id": 11730661,
1030
+ "name": "PHPMyAdmin on 14.04",
1031
+ "distribution": "Ubuntu",
1032
+ "slug": "phpmyadmin",
1033
+ "public": true,
1034
+ "regions": [
1035
+ "nyc1",
1036
+ "ams1",
1037
+ "sfo1",
1038
+ "nyc2",
1039
+ "ams2",
1040
+ "sgp1",
1041
+ "lon1",
1042
+ "nyc3",
1043
+ "ams3",
1044
+ "fra1"
1045
+ ],
1046
+ "created_at": "2015-05-05T17:11:36Z",
1047
+ "min_disk_size": 20,
1048
+ "type": "snapshot"
1049
+ },
1050
+ {
1051
+ "id": 12438838,
1052
+ "name": "Redmine on 14.04",
1053
+ "distribution": "Ubuntu",
1054
+ "slug": "redmine",
1055
+ "public": true,
1056
+ "regions": [
1057
+ "nyc1",
1058
+ "ams1",
1059
+ "sfo1",
1060
+ "nyc2",
1061
+ "ams2",
1062
+ "sgp1",
1063
+ "lon1",
1064
+ "nyc3",
1065
+ "ams3",
1066
+ "fra1"
1067
+ ],
1068
+ "created_at": "2015-06-22T22:27:52Z",
1069
+ "min_disk_size": 20,
1070
+ "type": "snapshot"
1071
+ }
1072
+ ],
1073
+ "links": {},
1074
+ "meta": {
1075
+ "total": 49
13
1076
  }
14
- ]
15
- }
1077
+ }