smartdc 1.3.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -19
  3. data/.travis.yml +1 -1
  4. data/Gemfile +5 -11
  5. data/README.md +25 -40
  6. data/Rakefile +5 -5
  7. data/bin/sdc +4 -380
  8. data/config.ru +2 -0
  9. data/lib/smartdc.rb +23 -15
  10. data/lib/smartdc/api/analytics.rb +19 -36
  11. data/lib/smartdc/api/analytics/heatmap.rb +6 -15
  12. data/lib/smartdc/api/datacenters.rb +7 -16
  13. data/lib/smartdc/api/images.rb +11 -0
  14. data/lib/smartdc/api/keys.rb +13 -23
  15. data/lib/smartdc/api/machines.rb +26 -60
  16. data/lib/smartdc/api/machines/metadata.rb +15 -0
  17. data/lib/smartdc/api/machines/snapshots.rb +23 -0
  18. data/lib/smartdc/api/machines/tags.rb +19 -0
  19. data/lib/smartdc/api/packages.rb +7 -17
  20. data/lib/smartdc/auth.rb +39 -5
  21. data/lib/smartdc/cli.rb +65 -0
  22. data/lib/smartdc/cli/analytic.rb +52 -0
  23. data/lib/smartdc/cli/datacenter.rb +15 -0
  24. data/lib/smartdc/cli/image.rb +19 -0
  25. data/lib/smartdc/cli/key.rb +26 -0
  26. data/lib/smartdc/cli/machine.rb +79 -0
  27. data/lib/smartdc/cli/machine/metadata.rb +30 -0
  28. data/lib/smartdc/cli/machine/snapshot.rb +38 -0
  29. data/lib/smartdc/cli/machine/tag.rb +33 -0
  30. data/lib/smartdc/cli/package.rb +17 -0
  31. data/lib/smartdc/cli_configure.rb +81 -0
  32. data/lib/smartdc/cli_helper.rb +111 -0
  33. data/lib/smartdc/client.rb +33 -28
  34. data/lib/smartdc/configure.rb +30 -0
  35. data/lib/smartdc/default.rb +35 -0
  36. data/lib/smartdc/version.rb +1 -1
  37. data/smartdc.gemspec +20 -16
  38. data/spec/cassettes/analytics/create.yml +64 -0
  39. data/spec/cassettes/analytics/describe.yml +123 -0
  40. data/spec/cassettes/analytics/destroy.yml +56 -0
  41. data/spec/cassettes/analytics/index.yml +62 -0
  42. data/spec/cassettes/analytics/show.yml +62 -0
  43. data/spec/cassettes/analytics/value.yml +62 -0
  44. data/spec/cassettes/datacenters/index.yml +62 -0
  45. data/spec/cassettes/datacenters/show.yml +64 -0
  46. data/spec/cassettes/images/index.yml +519 -0
  47. data/spec/cassettes/images/show.yml +63 -0
  48. data/spec/cassettes/keys/create.yml +65 -0
  49. data/spec/cassettes/keys/destroy.yml +56 -0
  50. data/spec/cassettes/keys/index.yml +63 -0
  51. data/spec/cassettes/keys/show.yml +63 -0
  52. data/spec/cassettes/machines/create.yml +65 -0
  53. data/spec/cassettes/machines/destroy.yml +56 -0
  54. data/spec/cassettes/machines/index.yml +67 -0
  55. data/spec/cassettes/machines/metadata/destroy.yml +56 -0
  56. data/spec/cassettes/machines/metadata/index.yml +62 -0
  57. data/spec/cassettes/machines/metadata/update.yml +64 -0
  58. data/spec/cassettes/machines/reboot.yml +58 -0
  59. data/spec/cassettes/machines/show.yml +63 -0
  60. data/spec/cassettes/machines/snapshots/create.yml +62 -0
  61. data/spec/cassettes/machines/snapshots/destroy.yml +56 -0
  62. data/spec/cassettes/machines/snapshots/index.yml +62 -0
  63. data/spec/cassettes/machines/snapshots/show.yml +62 -0
  64. data/spec/cassettes/machines/snapshots/start.yml +58 -0
  65. data/spec/cassettes/machines/start.yml +58 -0
  66. data/spec/cassettes/machines/stop.yml +58 -0
  67. data/spec/cassettes/machines/tags/create.yml +64 -0
  68. data/spec/cassettes/machines/tags/destroy.yml +56 -0
  69. data/spec/cassettes/machines/tags/index.yml +62 -0
  70. data/spec/cassettes/machines/tags/show.yml +62 -0
  71. data/spec/cassettes/packages/index.yml +123 -0
  72. data/spec/cassettes/packages/show.yml +63 -0
  73. data/spec/fixtures/config/sdccfg +4 -0
  74. data/spec/fixtures/ssh/id_rsa +27 -0
  75. data/spec/fixtures/ssh/id_rsa.pub +1 -0
  76. data/spec/smartdc/api/analytics_spec.rb +47 -0
  77. data/spec/smartdc/api/datacenters_spec.rb +19 -0
  78. data/spec/smartdc/api/images_spec.rb +19 -0
  79. data/spec/smartdc/api/keys_spec.rb +34 -0
  80. data/spec/smartdc/api/machines/metadata_spec.rb +27 -0
  81. data/spec/smartdc/api/machines/snapshots_spec.rb +38 -0
  82. data/spec/smartdc/api/machines/tags_spec.rb +33 -0
  83. data/spec/smartdc/api/machines_spec.rb +59 -0
  84. data/spec/smartdc/api/packages_spec.rb +19 -0
  85. data/spec/smartdc/auth_spec.rb +25 -0
  86. data/spec/smartdc/cli_configure_spec.rb +32 -0
  87. data/spec/smartdc/client_spec.rb +11 -0
  88. data/spec/smartdc_spec.rb +44 -0
  89. data/spec/spec_helper.rb +25 -8
  90. metadata +176 -83
  91. data/lib/cli_helper.rb +0 -126
  92. data/lib/configure.rb +0 -125
  93. data/lib/smartdc/api/datasets.rb +0 -20
  94. data/lib/smartdc/api/machine/metadata.rb +0 -24
  95. data/lib/smartdc/api/machine/snapshots.rb +0 -35
  96. data/lib/smartdc/api/machine/tags.rb +0 -29
  97. data/lib/smartdc/error.rb +0 -35
  98. data/lib/smartdc/request.rb +0 -83
  99. data/lib/smartdc/response.rb +0 -25
  100. data/lib/smartdc/response/raise_error.rb +0 -38
  101. data/spec/fixtures/analytics.json +0 -26
  102. data/spec/fixtures/datacenter.json +0 -4
  103. data/spec/fixtures/datacenters.json +0 -3
  104. data/spec/fixtures/datasets.json +0 -38
  105. data/spec/fixtures/keys.json +0 -14
  106. data/spec/fixtures/machines.json +0 -36
  107. data/spec/fixtures/packages.json +0 -18
  108. data/spec/fixtures/snapshots.json +0 -8
  109. data/spec/fixtures/tag.json +0 -3
  110. data/spec/unit/smartdc/api/analytics_spec.rb +0 -48
  111. data/spec/unit/smartdc/api/datacenters_spec.rb +0 -28
  112. data/spec/unit/smartdc/api/datasets_spec.rb +0 -28
  113. data/spec/unit/smartdc/api/keys_spec.rb +0 -48
  114. data/spec/unit/smartdc/api/machine/metadata_spec.rb +0 -38
  115. data/spec/unit/smartdc/api/machine/snapshots_spec.rb +0 -48
  116. data/spec/unit/smartdc/api/machine/tags_spec.rb +0 -48
  117. data/spec/unit/smartdc/api/machines_spec.rb +0 -48
  118. data/spec/unit/smartdc/api/packages_spec.rb +0 -28
  119. data/spec/unit/smartdc/client_spec.rb +0 -40
  120. data/spec/unit/smartdc_spec.rb +0 -9
@@ -0,0 +1,56 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: https://us-east-1.api.joyentcloud.com/my/analytics/instrumentations/256
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 204
25
+ message: No Content
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Access-Control-Expose-Headers:
33
+ - Api-Version, Request-Id, Response-Time
34
+ Strict-Transport-Security:
35
+ - max-age=6570000
36
+ Date: ''
37
+ X-Request-Id: ''
38
+ Access-Control-Allow-Origin:
39
+ - "*"
40
+ Response-Time: ''
41
+ X-Response-Time: ''
42
+ Connection:
43
+ - Keep-Alive
44
+ Access-Control-Allow-Headers:
45
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
46
+ Response-Time
47
+ Access-Control-Allow-Methods:
48
+ - GET, HEAD, POST, DELETE
49
+ Api-Version:
50
+ - 7.2.0
51
+ body:
52
+ encoding: UTF-8
53
+ string: ''
54
+ http_version:
55
+ recorded_at: Sun, 15 Feb 2015 11:49:49 GMT
56
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,62 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://us-east-1.api.joyentcloud.com/my/analytics/instrumentations
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Content-Type:
33
+ - application/json
34
+ Access-Control-Expose-Headers:
35
+ - Api-Version, Request-Id, Response-Time
36
+ Strict-Transport-Security:
37
+ - max-age=6570000
38
+ Date: ''
39
+ X-Request-Id: ''
40
+ Content-Md5:
41
+ - ilATJWsNyP/ABfcaGVRPYg==
42
+ Access-Control-Allow-Origin:
43
+ - "*"
44
+ Response-Time: ''
45
+ X-Response-Time: ''
46
+ Connection:
47
+ - Keep-Alive
48
+ Access-Control-Allow-Headers:
49
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
50
+ Response-Time
51
+ Access-Control-Allow-Methods:
52
+ - GET, HEAD, POST
53
+ Api-Version:
54
+ - 7.2.0
55
+ Content-Length:
56
+ - '384'
57
+ body:
58
+ encoding: UTF-8
59
+ string: '[{"module":"syscall","stat":"syscalls","predicate":{},"decomposition":[],"value-dimension":1,"value-arity":"scalar","enabled":true,"retention-time":600,"idle-max":3600,"transformations":{},"nsources":1,"granularity":1,"persist-data":false,"crtime":1424000674378,"value-scope":"interval","id":"256","uris":[{"uri":"/<USERNAME>/analytics/instrumentations/256/value/raw","name":"value_raw"}]}]'
60
+ http_version:
61
+ recorded_at: Sun, 15 Feb 2015 11:45:21 GMT
62
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,62 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://us-east-1.api.joyentcloud.com/my/analytics/instrumentations/256
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Content-Type:
33
+ - application/json
34
+ Access-Control-Expose-Headers:
35
+ - Api-Version, Request-Id, Response-Time
36
+ Strict-Transport-Security:
37
+ - max-age=6570000
38
+ Date: ''
39
+ X-Request-Id: ''
40
+ Content-Md5:
41
+ - eCWs3p3Xb/QdZPNq3cRa1g==
42
+ Access-Control-Allow-Origin:
43
+ - "*"
44
+ Response-Time: ''
45
+ X-Response-Time: ''
46
+ Connection:
47
+ - Keep-Alive
48
+ Access-Control-Allow-Headers:
49
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
50
+ Response-Time
51
+ Access-Control-Allow-Methods:
52
+ - GET, HEAD, POST, DELETE
53
+ Api-Version:
54
+ - 7.2.0
55
+ Content-Length:
56
+ - '382'
57
+ body:
58
+ encoding: UTF-8
59
+ string: '{"module":"syscall","stat":"syscalls","predicate":{},"decomposition":[],"value-dimension":1,"value-arity":"scalar","enabled":true,"retention-time":600,"idle-max":3600,"transformations":{},"nsources":1,"granularity":1,"persist-data":false,"crtime":1424000674378,"value-scope":"interval","id":"256","uris":[{"uri":"/<USERNAME>/analytics/instrumentations/256/value/raw","name":"value_raw"}]}'
60
+ http_version:
61
+ recorded_at: Sun, 15 Feb 2015 11:47:19 GMT
62
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,62 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://us-east-1.api.joyentcloud.com/my/analytics/instrumentations/256/value/raw
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Content-Type:
33
+ - application/json
34
+ Access-Control-Expose-Headers:
35
+ - Api-Version, Request-Id, Response-Time
36
+ Strict-Transport-Security:
37
+ - max-age=6570000
38
+ Date: ''
39
+ X-Request-Id: ''
40
+ Content-Md5:
41
+ - TtwIFiY9AJO4E4K4fMPd2w==
42
+ Access-Control-Allow-Origin:
43
+ - "*"
44
+ Response-Time: ''
45
+ X-Response-Time: ''
46
+ Connection:
47
+ - Keep-Alive
48
+ Access-Control-Allow-Headers:
49
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
50
+ Response-Time
51
+ Access-Control-Allow-Methods:
52
+ - GET, HEAD
53
+ Api-Version:
54
+ - 7.2.0
55
+ Content-Length:
56
+ - '210'
57
+ body:
58
+ encoding: UTF-8
59
+ string: '{"value":0,"transformations":{},"start_time":1424000923,"duration":1,"end_time":1424000924,"nsources":1,"minreporting":1,"requested_start_time":1424000923,"requested_duration":1,"requested_end_time":1424000924}'
60
+ http_version:
61
+ recorded_at: Sun, 15 Feb 2015 11:48:46 GMT
62
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,62 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://us-east-1.api.joyentcloud.com/my/datacenters
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Content-Type:
33
+ - application/json
34
+ Access-Control-Expose-Headers:
35
+ - Api-Version, Request-Id, Response-Time
36
+ Strict-Transport-Security:
37
+ - max-age=6570000
38
+ Date: ''
39
+ X-Request-Id: ''
40
+ Content-Md5:
41
+ - 7z4h4j2rOPRXtPtT4l5zLg==
42
+ Access-Control-Allow-Origin:
43
+ - "*"
44
+ Response-Time: ''
45
+ X-Response-Time: ''
46
+ Connection:
47
+ - Keep-Alive
48
+ Access-Control-Allow-Headers:
49
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
50
+ Response-Time
51
+ Access-Control-Allow-Methods:
52
+ - GET
53
+ Api-Version:
54
+ - 7.2.0
55
+ Content-Length:
56
+ - '307'
57
+ body:
58
+ encoding: UTF-8
59
+ string: '{"us-east-1":"https://us-east-1.api.joyentcloud.com","us-west-1":"https://us-west-1.api.joyentcloud.com","us-sw-1":"https://us-sw-1.api.joyentcloud.com","eu-ams-1":"https://eu-ams-1.api.joyentcloud.com","us-east-2":"https://us-east-2.api.joyentcloud.com","us-east-3":"https://us-east-3.api.joyentcloud.com"}'
60
+ http_version:
61
+ recorded_at: Sun, 15 Feb 2015 09:29:24 GMT
62
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,64 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://us-east-1.api.joyentcloud.com/my/datacenters/us-east-1
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 302
25
+ message: Moved Temporarily
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Content-Type:
33
+ - application/json
34
+ Access-Control-Expose-Headers:
35
+ - Api-Version, Request-Id, Response-Time
36
+ Strict-Transport-Security:
37
+ - max-age=6570000
38
+ Date: ''
39
+ X-Request-Id: ''
40
+ Location:
41
+ - https://us-east-1.api.joyentcloud.com/
42
+ Content-Md5:
43
+ - h1cwVnwGeoSn71J7XzPFuw==
44
+ Access-Control-Allow-Origin:
45
+ - "*"
46
+ Response-Time: ''
47
+ X-Response-Time: ''
48
+ Connection:
49
+ - Keep-Alive
50
+ Access-Control-Allow-Headers:
51
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
52
+ Response-Time
53
+ Access-Control-Allow-Methods:
54
+ - GET
55
+ Api-Version:
56
+ - 7.2.0
57
+ Content-Length:
58
+ - '85'
59
+ body:
60
+ encoding: UTF-8
61
+ string: '{"code":"ResourceMoved","message":" us-east-1 https://us-east-1.api.joyentcloud.com"}'
62
+ http_version:
63
+ recorded_at: Sun, 15 Feb 2015 09:29:33 GMT
64
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,519 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://us-east-1.api.joyentcloud.com/my/images
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Date: ''
11
+ Authorization: ''
12
+ Content-Type:
13
+ - application/json
14
+ Accept:
15
+ - application/json
16
+ X-Api-Version:
17
+ - "~7.0"
18
+ User-Agent:
19
+ - Faraday v0.9.1
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ X-Api-Version:
28
+ - 7.2.0
29
+ Server:
30
+ - Joyent SmartDataCenter 7.2.0
31
+ Request-Id: ''
32
+ Content-Type:
33
+ - application/json
34
+ Access-Control-Expose-Headers:
35
+ - Api-Version, Request-Id, Response-Time
36
+ Strict-Transport-Security:
37
+ - max-age=6570000
38
+ Date: ''
39
+ X-Request-Id: ''
40
+ Content-Md5:
41
+ - 7RNZEibVoopcVCZP10In9g==
42
+ Access-Control-Allow-Origin:
43
+ - "*"
44
+ Response-Time: ''
45
+ X-Response-Time: ''
46
+ Connection:
47
+ - Keep-Alive
48
+ Access-Control-Allow-Headers:
49
+ - Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version,
50
+ Response-Time
51
+ Access-Control-Allow-Methods:
52
+ - GET, HEAD, POST
53
+ Api-Version:
54
+ - 7.2.0
55
+ Content-Length:
56
+ - '107939'
57
+ body:
58
+ encoding: UTF-8
59
+ string: '[{"id":"f953e97e-4991-11e1-9ea4-27c6e7e8afda","name":"nodejs","version":"1.3.3","os":"smartos","requirements":{},"type":"smartmachine","description":"Node.js
60
+ git-deploy PaaS dataset","files":[{"compression":"bzip2","sha1":"9eb5a49bd9f7fa6baa74905c2db4f649f7501ccd","size":285688305}],"published_at":"2012-02-14T03:54:01Z"},{"id":"e4cd7b9e-4330-11e1-81cf-3bb50a972bda","name":"centos-6","version":"1.0.1","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
61
+ 6 64-bit image with just essential packages installed. Ideal for users who
62
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"79b374d14930a9449d5427118a6dcefacd073a26","size":662329985}],"tags":{"role":"os"},"published_at":"2012-02-15T20:04:18Z"},{"id":"01b2c898-945f-11e1-a523-af1afbe22822","name":"smartos","version":"1.6.3","os":"smartos","requirements":{},"type":"smartmachine","description":"Generic
63
+ multi-purpose SmartMachine. This image is deprecated and will be replaced
64
+ by the SmartOS Base image (base).","files":[{"compression":"bzip2","sha1":"97f20b32c2016782257176fb58a35e5044f05840","size":46271847}],"tags":{"role":"os"},"published_at":"2012-05-02T15:14:45Z"},{"id":"f9e4be48-9466-11e1-bc41-9f993f5dff36","name":"smartos64","version":"1.6.3","os":"smartos","requirements":{},"type":"smartmachine","description":"Generic
65
+ multi-purpose 64-bit SmartMachine. This image is deprecated and will be replaced
66
+ by the 64 bit SmartOS Standard image (base64).","files":[{"compression":"bzip2","sha1":"9df6543bc4bde6e2efc532fe37ce21bc95318397","size":47480510}],"tags":{"role":"os"},"published_at":"2012-05-02T15:15:24Z"},{"id":"3390ca7c-f2e7-11e1-8818-c36e0b12e58b","name":"standard","version":"1.0.7","os":"smartos","requirements":{},"type":"smartmachine","description":"A
67
+ SmartOS image optimized for web development. Everything you need to build
68
+ a web stack — such as Ruby, Apache, and MySQL — is installed and ready to
69
+ use.","files":[{"compression":"bzip2","sha1":"f319d0ab73ca622ab34a0597fd656cc46c885f83","size":430731819}],"tags":{"role":"os"},"published_at":"2012-08-30T21:26:23Z"},{"id":"a0f8cf30-f2ea-11e1-8a51-5793736be67c","name":"standard64","version":"1.0.7","os":"smartos","requirements":{},"type":"smartmachine","description":"A
70
+ SmartOS 64-bit image optimized for web development. Everything you need to
71
+ build a web stack — such as Ruby, Apache, and MySQL — is installed and ready
72
+ to use.","files":[{"compression":"bzip2","sha1":"4c5017384f63bfb7a0b3e89e64317023882e1700","size":441269643}],"tags":{"role":"os"},"published_at":"2012-08-30T21:37:30Z"},{"id":"dc1a8b5e-043c-11e2-9d94-0f3fcb2b0c6d","name":"percona","version":"1.6.0","os":"smartos","requirements":{},"type":"smartmachine","description":"SmartOS
73
+ image pre-configured and optimized as a Percona 5.5 64-bit MySQL server with
74
+ Quickbackup, Handlersocket, and Sphinx Plug-in","files":[{"compression":"bzip2","sha1":"2c58b55f5eb5c647324c277072b4222a8ccbe537","size":297118451}],"tags":{"role":"database"},"published_at":"2012-09-21T22:58:19Z"},{"id":"60a3b1fa-0674-11e2-abf5-cb82934a8e24","name":"base64","version":"1.8.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
75
+ SmartOS 64-bit image with just essential packages installed. Ideal for users
76
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"75f10c51683a22e65aeb2b25b085d6c3270f2b99","size":81374762}],"tags":{"role":"os"},"published_at":"2012-09-25T07:14:50Z"},{"id":"55330ab4-066f-11e2-bd0f-434f2462fada","name":"base","version":"1.8.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
77
+ SmartOS image with just essential packages installed. Ideal for users who
78
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"ffe11a74ac35641c57b3866fa43fa9c8d2c7fe3b","size":79400058}],"tags":{"role":"os"},"published_at":"2012-09-25T07:28:08Z"},{"id":"2539f6de-0b5a-11e2-b647-fb08c3503fb2","name":"centos-5.7","version":"1.3.0","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
79
+ 5.7 64-bit image with just essential packages installed. Ideal for users who
80
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"4c47a703aec95457ccd739f27f2eca47addbf647","size":961000176}],"tags":{"role":"os"},"published_at":"2012-10-01T00:07:01Z"},{"id":"8700b668-0da4-11e2-bde4-17221283a2f4","name":"centos-6","version":"1.3.0","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
81
+ 6 64-bit image with just essential packages installed. Ideal for users who
82
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"50fc6761dc2c63aec24a386776c320c96962609a","size":673068887}],"tags":{"role":"os"},"published_at":"2012-10-03T22:16:53Z"},{"id":"1fc068b0-13b0-11e2-9f4e-2f3f6a96d9bc","name":"nodejs","version":"1.4.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
83
+ SmartOS image with Node.js, npm, MongoDB and other useful packages pre-installed.
84
+ Ideal for Node.js applications.","files":[{"compression":"bzip2","sha1":"d2c40995ff693994e0343a661fb2279794546748","size":269634973}],"tags":{"role":"development"},"published_at":"2012-10-11T14:40:57Z"},{"id":"84cb7edc-3f22-11e2-8a2a-3f2a7b148699","name":"base","version":"1.8.4","os":"smartos","requirements":{},"type":"smartmachine","description":"A
85
+ SmartOS image with just essential packages installed. Ideal for users who
86
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"692f3fb9a5f6867a05830cc5855780253331c611","size":79444544}],"tags":{"role":"os"},"published_at":"2012-12-05T21:58:50Z"},{"id":"fdea06b0-3f24-11e2-ac50-0b645575ce9d","name":"base64","version":"1.8.4","os":"smartos","requirements":{},"type":"smartmachine","description":"A
87
+ SmartOS 64-bit image with just essential packages installed. Ideal for users
88
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"da918c38f1484b4cfc2c5e15b9b96583fae44b1c","size":81369208}],"tags":{"role":"os"},"published_at":"2012-12-05T21:59:37Z"},{"id":"5f101d16-90ac-11e2-b9c2-877979ff6041","name":"ws2008std-r2-sp1","version":"2.0.2","os":"windows","requirements":{"max_memory":32768,"max_ram":32768,"min_memory":4096,"min_ram":4096},"type":"virtualmachine","description":"Windows
89
+ Server 2008r2 Standard 64-bit image. This version of Windows Server only supports
90
+ a maximum of 4 vCPUs.","files":[{"compression":"gzip","sha1":"ae6d7e6112c7e7215292944b0bfcd5db095ddb28","size":3045531099}],"tags":{"role":"os"},"published_at":"2013-03-19T20:11:18Z"},{"id":"13328c9a-9173-11e2-a9a5-2ff43d306c21","name":"ws2008ent-r2-sp1","version":"2.0.2","os":"windows","requirements":{"min_memory":4096,"min_ram":4096},"type":"virtualmachine","description":"Windows
91
+ Server 2008r2 Enterprise 64-bit image.","files":[{"compression":"gzip","sha1":"1a095bf6de60012525c715ce229b79b3c233873e","size":3043729431}],"tags":{"role":"os"},"published_at":"2013-03-20T18:59:43Z"},{"id":"60ed3a3e-92c7-11e2-ba4a-9b6d5feaa0c4","name":"base","version":"1.9.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
92
+ SmartOS image with just essential packages installed. Ideal for users who
93
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"b5300c137d6fc13665f46005ab8a46cd89d633d5","size":69886832}],"tags":{"role":"os"},"published_at":"2013-03-22T17:10:33Z"},{"id":"cf7e2f40-9276-11e2-af9a-0bad2233fb0b","name":"base64","version":"1.9.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
94
+ SmartOS 64-bit image with just essential packages installed. Ideal for users
95
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"7a431674575165d792a97486ccf624c58f21f3eb","size":72550413}],"tags":{"role":"os"},"published_at":"2013-03-22T17:11:29Z"},{"id":"95f6c9a6-a2bd-11e2-b753-dbf2651bf890","name":"ws2012std","version":"1.0.1","os":"windows","requirements":{"min_memory":4096,"min_ram":4096},"type":"virtualmachine","description":"Windows
96
+ Server 2012 Standard 64-bit image.","files":[{"compression":"gzip","sha1":"fe35a3b70f0a6f8e5252b05a35ee397d37d15185","size":3985823590}],"tags":{"role":"os"},"published_at":"2013-04-11T21:04:09Z"},{"id":"014e2254-a853-11e2-81c9-b318c31fa17a","name":"debian-6.0.7","version":"2.4.1","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
97
+ 6.0.7 64-bit image with just essential packages installed. Ideal for users
98
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"efd2c8ed19a0442a60318ebcae87609f47bf6f30","size":187563813}],"tags":{"role":"os"},"published_at":"2013-04-18T19:04:41Z"},{"id":"87c556ac-ab9d-11e2-914d-07682fcab47d","name":"centos-6","version":"2.4.1","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
99
+ 6.4 64-bit image with just essential packages installed. Ideal for users who
100
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"8186ffc9a6eb292c6401de418b365fa1dabd0935","size":178319204}],"tags":{"role":"os"},"published_at":"2013-04-24T15:48:05Z"},{"id":"f669428c-a939-11e2-a485-b790efc0f0c1","name":"base","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
101
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
102
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"40cdc6457c237cf6306103c74b5f45f5bf2d9bbe","size":82492182}],"tags":{"role":"os"},"published_at":"2013-04-26T15:16:02Z"},{"id":"9eac5c0c-a941-11e2-a7dc-57a6b041988f","name":"base64","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
103
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
104
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"bzip2","sha1":"9c2dcd57ff1487d4bbf1b662db8655058217bba7","size":84619866}],"tags":{"role":"os"},"published_at":"2013-04-26T15:17:57Z"},{"id":"3882b5da-b0e8-11e2-b3a9-dbcf26c3e051","name":"percona","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
105
+ SmartOS 64-bit image pre-configured and optimized as a Percona 5.5.29 64-bit
106
+ MySQL server with Quickbackup, Handlersocket, and Sphinx Plug-in","files":[{"compression":"bzip2","sha1":"f629b52a2ee5ac212d69d7b8590b81bf097f70b3","size":138317325}],"tags":{"role":"database"},"published_at":"2013-05-01T20:07:28Z"},{"id":"beb2dbd4-b26f-11e2-8ad4-935c80092aa6","name":"nodejs","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
107
+ SmartOS 32-bit image with Node.js 0.10.5, npm 1.2.18, MongoDB 2.2.2 and other
108
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"bzip2","sha1":"ee49a5f75f80cd5f95335e2af62afbbd5f120f02","size":361357178}],"tags":{"role":"development"},"published_at":"2013-05-03T14:26:53Z"},{"id":"1567edb0-b33e-11e2-a0d2-bf73e2825ffe","name":"riak","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
109
+ 64-bit SmartOS image pre-configured to run Open Source Riak 1.3.1, a Dynamo-inspired
110
+ key/value store from Basho.","files":[{"compression":"bzip2","sha1":"055af38ce25e847cba7dc159ac08a61a8d0b1f99","size":171768746}],"tags":{"role":"database"},"published_at":"2013-05-06T15:22:28Z"},{"id":"94384a12-bbeb-11e2-aec2-2bfa9742484b","name":"debian-6.0.7","version":"2.4.2","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
111
+ 6.0.7 64-bit image with just essential packages installed. Ideal for users
112
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"4e423fafd824a7907348846495938d590f4c8f2e","size":193926777}],"tags":{"role":"os"},"published_at":"2013-05-13T19:19:01Z"},{"id":"30e9e4c8-bbf2-11e2-ac3b-3b598ee13393","name":"centos-6","version":"2.4.2","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
113
+ 6.4 64-bit image with just essential packages installed. Ideal for users who
114
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"c6a9b07d125bb821ed7ca979eca8f3943899aa75","size":178215924}],"tags":{"role":"os"},"published_at":"2013-05-13T19:42:33Z"},{"id":"e42f8c84-bbea-11e2-b920-078fab2aab1f","name":"fedora","version":"2.4.2","os":"linux","requirements":{},"type":"virtualmachine","description":"Fedora
115
+ 18 64-bit image with just essential packages installed. Ideal for users who
116
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"3befacab393958ecd96f42a9cbe76a824a9b9920","size":570838694}],"tags":{"role":"os"},"published_at":"2013-05-17T18:18:36.472Z"},{"id":"48489174-e351-11e2-88c0-a31eb2b342ee","name":"java","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
117
+ SmartOS 64-bit image with Java JDK (1.6.0_26), Apache (2.4.4), Apache Tomcat
118
+ (7.0.35), Apache Ant (1.8.4) and Apache Maven (3.0.5) installed and configured
119
+ as well as the common Java ENV variables (JAVA_HOME, CATALINA_HOME, ANT_HOME)
120
+ setup for all users.","files":[{"compression":"bzip2","sha1":"df2d5b23a08e44ca5fe78ad050784e4835f3a39a","size":240194040}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Java+Instance","published_at":"2013-07-02T19:55:00.000Z"},{"id":"274bc2bc-d919-11e2-b797-83245409fbeb","name":"hadoop","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
121
+ SmartOS 64-bit image with Apache Hadoop components pre-installed. Includes
122
+ hadoop, hbase, hcatalog, hive, pig, templeton, flume, pig, oozie, sqoop, and
123
+ mahout.","files":[{"compression":"bzip2","sha1":"7d3daf7287c19a23b3c563c845f64969410aeecf","size":792069834}],"tags":{"role":"hadoop"},"homepage":"http://wiki.joyent.com/jpc2/Joyent+Hadoop+SmartMachine","published_at":"2013-07-02T19:55:00.000Z"},{"id":"bae3f528-e01f-11e2-b2cb-1360087a7d5f","name":"cassandra","version":"13.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
124
+ SmartOS 64-bit image that comes with Apache Cassandra (1.2.4) and the Java
125
+ JDK (1.6.0_26) pre-installed and configured.","files":[{"compression":"bzip2","sha1":"7fdd91c5c1682f7b5c870b065716e3ca2e33b50a","size":153208104}],"tags":{"role":"hadoop"},"homepage":"http://wiki.joyent.com/jpc2/Cassandra+Instance","published_at":"2013-07-02T19:55:00.000Z"},{"id":"e3364212-05c0-11e3-9576-3f3ee9e951a7","name":"base","version":"13.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
126
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
127
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"1d9cdb0dcf13e68a6e086884b9bfe84927c201a3","size":154826174}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-08-15T15:30:00Z"},{"id":"0084dad6-05c1-11e3-9476-8f8320925eea","name":"base64","version":"13.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
128
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
129
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"53b2f11e3bea1e5fd9052a5ef6f2874ccc88e355","size":159268611}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-08-15T15:30:00Z"},{"id":"399775e4-163e-11e3-8d42-7b14b732ae17","name":"standard64","version":"13.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
130
+ SmartOS 64-bit image optimized for web development. Everything you need to
131
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
132
+ use.","files":[{"compression":"bzip2","sha1":"29ca94e29b443c4c4143bbea71d02afb34a613b7","size":637590605}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2013-09-05T15:17:04Z"},{"id":"ec5defa8-16fe-11e3-948e-8f59b3488902","name":"mongodb","version":"13.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
133
+ SmartOS 64-bit image that comes with MongoDB 2.4.6 pre-installed and pre-configured
134
+ for maximum performance and scalability.","files":[{"compression":"bzip2","sha1":"6358ccbccd1febc37994a62b8e1547dbdb3ebde6","size":234522895}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2013-09-06T14:16:28Z"},{"id":"34509f68-1ae7-11e3-b816-d3edf71c7840","name":"standard","version":"13.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
135
+ SmartOS 32-bit image optimized for web development. Everything you need to
136
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
137
+ use.","files":[{"compression":"bzip2","sha1":"3a966aac0e0609f07dbf7215286934de787deb0a","size":623032708}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2013-09-11T13:36:44Z"},{"id":"b83f8276-1fdd-11e3-989b-4bddb088a8a0","name":"base","version":"13.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
138
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
139
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"277ba8b4989117224b7740df96bbbb5f5649c94d","size":154603041}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-09-20T15:01:34Z"},{"id":"17c98640-1fdb-11e3-bf51-3708ce78e75a","name":"base64","version":"13.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
140
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
141
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"5540c3b911c0a71040d1a2bac9263e2a47fdcc6f","size":159279359}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-09-20T15:02:46Z"},{"id":"b779b49a-29e4-11e3-9b1d-0b0b41ccdcad","name":"standard64","version":"13.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
142
+ SmartOS 64-bit image optimized for web development. Everything you need to
143
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
144
+ use.","files":[{"compression":"gzip","sha1":"43e533fadd290161f75421f90f35399b46192d15","size":733153307}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2013-09-30T15:26:43Z"},{"id":"d2409672-29f3-11e3-ba86-6f782523cb41","name":"mongodb","version":"13.2.1","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
145
+ SmartOS 64-bit image that comes with MongoDB 2.4.6 pre-installed and pre-configured
146
+ for maximum performance and scalability.","files":[{"compression":"gzip","sha1":"bc30d8a110c3873ff3b7a289ceaec31205466e78","size":274894197}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2013-09-30T17:14:52Z"},{"id":"dac2ad6e-2aa5-11e3-885f-8fd408fc6a82","name":"standard","version":"13.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
147
+ SmartOS 32-bit image optimized for web development. Everything you need to
148
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
149
+ use.","files":[{"compression":"gzip","sha1":"e73a845a2a3905f5c8e0c5a32035b34d0c0f3202","size":711193322}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2013-10-01T14:29:15Z"},{"id":"325dbc5e-2b90-11e3-8a3e-bfdcb1582a8d","name":"centos-6","version":"2.5.0","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
150
+ 6.4 64-bit image with just essential packages installed. Ideal for users who
151
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"a99425e14aa5a2dfa307a2b2e9ef52c385c15f31","size":384075922}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2013-10-02T18:26:47Z"},{"id":"ffed3d9e-2c2f-11e3-9a12-bf5267821b0b","name":"nodejs","version":"13.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
152
+ SmartOS 32-bit image with Node.js 0.10.20, npm 1.3.11, MongoDB 2.4.6 and other
153
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"7d7415f717e5a5e68e64406cb75545e97316b29e","size":546563478}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Node.JS+Instance","published_at":"2013-10-04T14:15:56Z"},{"id":"133263be-3c2c-11e3-8d3a-a30c43ae58fd","name":"nodejs","version":"13.2.2","os":"smartos","requirements":{},"type":"smartmachine","description":"A
154
+ SmartOS 32-bit image with Node.js 0.10.21, npm 1.3.11, MongoDB 2.4.6 and other
155
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"6026c03e00b8bebcc4ef0d3febb3e65c43342366","size":547148552}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Node.JS+Instance","published_at":"2013-10-23T21:42:53Z"},{"id":"610e04c4-3cc4-11e3-9867-df64b21b66fe","name":"standard64","version":"13.2.3","os":"smartos","requirements":{},"type":"smartmachine","description":"A
156
+ SmartOS 64-bit image optimized for web development. Everything you need to
157
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
158
+ use.","files":[{"compression":"gzip","sha1":"a3e2c056782b4fd6f619a50e082e4c75882b0736","size":733971332}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2013-10-24T15:53:07Z"},{"id":"56a0655c-3cc6-11e3-9c79-5701599fdf05","name":"standard","version":"13.2.3","os":"smartos","requirements":{},"type":"smartmachine","description":"A
159
+ SmartOS 32-bit image optimized for web development. Everything you need to
160
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
161
+ use.","files":[{"compression":"gzip","sha1":"aeb3fc8bd6b1253dc76001c6e7b6f11e13c6dc0a","size":712122174}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2013-10-24T16:07:08Z"},{"id":"753ceee6-5372-11e3-8f4e-f79c1154e596","name":"base","version":"13.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
162
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
163
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"e95acae75e592ac7c2f1b9909b475f4b284bbb62","size":113948200}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-11-22T12:34:40Z"},{"id":"87b9f4ac-5385-11e3-a304-fb868b82fe10","name":"base64","version":"13.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
164
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
165
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"4cad4add7a9d8dcaed0f8979cc1be29e6c4efbf5","size":117503176}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-11-22T14:51:12Z"},{"id":"fb6e7820-60ee-11e3-93b6-7f34ea3f2616","name":"percona","version":"13.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
166
+ SmartOS 64-bit image pre-configured and optimized as a Percona 5.6.13 64-bit
167
+ MySQL server with Quickbackup and Sphinx Plug-in.","files":[{"compression":"gzip","sha1":"58a35c1522ff116fb71d552a83f7119c9a8e705f","size":229543750}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Joyent+Percona+SmartMachine","published_at":"2013-12-09T16:28:47Z"},{"id":"dee73ee2-69ab-11e3-b593-a3f1f80ef403","name":"base","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
168
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
169
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"2f0313c8c46f83787499855dbd525089a26edf79","size":118103054}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-12-20T19:21:05Z"},{"id":"c353c568-69ad-11e3-a248-db288786ea63","name":"base64","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
170
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
171
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"9b1b36c93522e2bfe0a58290c00a3680d5b6c532","size":121615108}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2013-12-20T19:34:37Z"},{"id":"81223438-7874-11e3-9edf-8f1e15269924","name":"nodejs","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
172
+ SmartOS 32-bit image with Node.js 0.10.24, npm 1.3.21, MongoDB 2.4.6 and other
173
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"e17480677aa53898b633d2a55d185e8c5026b5d0","size":370468125}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Node.JS+Instance","published_at":"2014-01-08T14:52:31Z"},{"id":"40d56fc2-788c-11e3-8e0e-ab90eb060ee7","name":"standard","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
174
+ SmartOS 32-bit image optimized for web development. Everything you need to
175
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
176
+ use.","files":[{"compression":"gzip","sha1":"f9067caf68a19c03a3a69f57e1d2b422b97b6657","size":552256667}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-01-08T17:42:31Z"},{"id":"74c3b232-7961-11e3-a7a7-935768270b93","name":"standard64","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
177
+ SmartOS 64-bit image optimized for web development. Everything you need to
178
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
179
+ use.","files":[{"compression":"gzip","sha1":"a6582d082c74ee630c24aa1b49b4baf276a35b4b","size":568466683}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-01-09T19:08:41Z"},{"id":"c56ed646-82d8-11e3-849e-eb2c0535bf06","name":"java","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
180
+ SmartOS 64-bit image with OpenJDK7 (1.7.25), Apache (2.4.6), Apache Tomcat
181
+ (7.0.42), Apache Ant (1.9.2) and Apache Maven (3.0.5) installed and configured
182
+ as well as the common Java ENV variables (JAVA_HOME, CATALINA_HOME, ANT_HOME)
183
+ setup for all users.","files":[{"compression":"gzip","sha1":"348232de2808153684c7b297889ea6c0f08fdd77","size":299230237}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Java+Instance","published_at":"2014-01-21T20:15:27Z"},{"id":"649e0c72-89ec-11e3-a7c2-97e6a67823b0","name":"mongodb","version":"13.3.1","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
184
+ SmartOS 64-bit image that comes with MongoDB 2.4.9 pre-installed and pre-configured
185
+ for maximum performance and scalability.","files":[{"compression":"gzip","sha1":"f94d214c57a1b1e56882ed957dcf8cd52f8f539f","size":259504176}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2014-01-30T20:23:33Z"},{"id":"df81f45e-8f9f-11e3-a819-93fab527c81e","name":"centos-6","version":"2.6.0","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
186
+ 6.5 64-bit image with just essential packages installed. Ideal for users who
187
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"ee4dc54983141322ca31fb204b1a676046ab829b","size":303380785}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-02-07T02:30:56Z"},{"id":"6d03452a-9a3c-11e3-8773-23a29a9b75d8","name":"hadoop","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
188
+ SmartOS 64-bit image with Hadoop Hortonworks components pre-installed. Includes
189
+ hadoop, hbase, hcatalog, hive, pig, templeton, flume, pig, oozie, sqoop, and
190
+ mahout.","files":[{"compression":"gzip","sha1":"cd01b86747a8c4a100bf3e90ee0111ddce4863d7","size":860942631}],"tags":{"role":"hadoop"},"homepage":"http://wiki.joyent.com/jpc2/Joyent+Hadoop+SmartMachine","published_at":"2014-02-20T14:36:44Z"},{"id":"e28711b3-7f9c-47a7-be7f-ce07e9a99394","name":"ubuntu-certified-12.04","version":"20140227","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
191
+ 12.04.4 LTS (20140227 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"18663dd0e7abbedc51ea6f061d56149927635d21","size":219094140}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-02-27T23:02:36.000Z"},{"id":"2b683a82-a066-11e3-97ab-2faa44701c5a","name":"base","version":"13.4.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
192
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
193
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"3bebb6ae2cdb26eef20cfb30fdc4a00a059a0b7b","size":110742036}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-02-28T10:50:42Z"},{"id":"ff86eb8a-a069-11e3-ae0e-4f3c8983a91c","name":"base64","version":"13.4.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
194
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
195
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"f6289f96d99d895ae59adbecdfc54ecfd7f2f2d1","size":114316011}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-02-28T11:18:07Z"},{"id":"7241e29a-a07b-11e3-9a5c-53df1db058c4","name":"base","version":"13.4.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
196
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
197
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"5915ab62136c17452b01a86e3b7da4a214990ba6","size":110571543}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-02-28T13:23:00Z"},{"id":"c3321aac-a07c-11e3-9430-fbb1cc12d1df","name":"base64","version":"13.4.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
198
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
199
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"2190af3d162f2121a83ce2e9652de365b0f9c9a5","size":114191497}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-02-28T13:32:26Z"},{"id":"835e27b2-a47e-11e3-9eb6-e78ef6d1ee8f","name":"postgresql","version":"13.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
200
+ SmartOS 64-bit image pre-configured and optimized as a PostgreSQL 9.3.0 64-bit
201
+ server with PgAdmin and monitoring plugins.","files":[{"compression":"gzip","sha1":"97427fce6c4f707a3b89c67e696e30fde6f71531","size":172735174}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Postgresql+Instance","published_at":"2014-03-05T15:55:02Z"},{"id":"1a4bdf60-b8da-11e3-a334-0f09e71eb510","name":"standard64","version":"13.4.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
202
+ SmartOS 64-bit image optimized for web development. Everything you need to
203
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
204
+ use.","files":[{"compression":"gzip","sha1":"bbb26ea6c215f011df49b9459128c49e291482cf","size":587018769}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-03-31T13:41:01Z"},{"id":"7c384e62-b8de-11e3-885f-9bb74b4e394b","name":"standard","version":"13.4.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
205
+ SmartOS 32-bit image optimized for web development. Everything you need to
206
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
207
+ use.","files":[{"compression":"gzip","sha1":"d7379af70c3703e911a1e18431036968206c8acb","size":571890985}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-03-31T14:12:24Z"},{"id":"78904c3a-ba8a-11e3-8d2c-e73f8ba0674a","name":"elasticsearch","version":"13.4.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
208
+ SmartOS 64-bit image pre-configured and optimized as a ElasticSearch 1.0.1
209
+ server.","files":[{"compression":"gzip","sha1":"2a95d8921572428fcda9f2cfe19cdfddee6111dc","size":250298122}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Elasticsearch+Instance","published_at":"2014-04-02T17:16:03Z"},{"id":"fe5aa6c0-0f09-4b1f-9bad-83e453bb74f3","name":"ubuntu-certified-12.04","version":"20140408","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
210
+ 12.04.4 LTS (20140408 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"9f830597f00663ca2e522fe94703f77fd3421e26","size":223864064}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-04-08T20:26:56.000Z"},{"id":"398deede-c025-11e3-8b24-f3ba141900bd","name":"standard64","version":"13.4.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
211
+ SmartOS 64-bit image optimized for web development. Everything you need to
212
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
213
+ use.","files":[{"compression":"gzip","sha1":"6043c25d929dbacb4447e720b491e11917321e22","size":587057296}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-04-09T20:26:24Z"},{"id":"effeb440-c026-11e3-b235-afe25a8d326b","name":"standard","version":"13.4.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
214
+ SmartOS 32-bit image optimized for web development. Everything you need to
215
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
216
+ use.","files":[{"compression":"gzip","sha1":"c0a66bf7a33622e30f708df75f34929d39951939","size":571729109}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-04-09T20:38:39Z"},{"id":"0fbd0a74-c028-11e3-ac6a-bf348e9f760c","name":"elasticsearch","version":"13.4.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
217
+ SmartOS 64-bit image pre-configured and optimized as a ElasticSearch 1.0.1
218
+ server.","files":[{"compression":"gzip","sha1":"60564f644ab27fe71fc8f26f8a6c38b9e106b948","size":250131343}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Elasticsearch+Instance","published_at":"2014-04-09T20:46:43Z"},{"id":"19daa264-c4c4-11e3-bec3-c30e2c0d4ec0","name":"centos-6","version":"2.6.1","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
219
+ 6.5 64-bit image with just essential packages installed. Ideal for users who
220
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"0e8b0a27dcd25538790098df46c357c4cae06b64","size":284504918}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-04-15T17:33:47Z"},{"id":"df165dad-0a5d-4eb7-8646-50507ff1c136","name":"ubuntu-certified-14.04","version":"20140416","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
221
+ 14.04 LTS (20140416 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"a6a08b2b6991141ee1431726b0a96b34d3b559d0","size":227972802}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-04-16T19:53:31.000Z"},{"id":"19edf83a-c674-11e3-af63-a78d671948c1","name":"base","version":"13.4.2","os":"smartos","requirements":{},"type":"smartmachine","description":"A
222
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
223
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"b18125578d516931b03b3d326d098ce82f9cce34","size":111371433}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-04-17T21:06:10Z"},{"id":"dc0688b2-c677-11e3-90ac-13373101c543","name":"base64","version":"13.4.2","os":"smartos","requirements":{},"type":"smartmachine","description":"A
224
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
225
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"7c42cc941d87e60851631cc3b1d261a4f5fccc46","size":114933608}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-04-17T21:33:04Z"},{"id":"081d7fd2-714a-4dd2-8bc7-e689acd42702","name":"ScaleArc-MSSQL-Enterprise-2CPU-2GB","version":"20140430","os":"linux","requirements":{"max_memory":15360,"max_ram":15360,"min_memory":15360,"min_ram":15360},"type":"virtualmachine","description":"A
226
+ CentOS 6.5 image with ScaleArc MS SQL 2.5 database traffic management software
227
+ preinstalled and configured. ScaleArc Enterprise 2CPU 2GB License.","files":[{"compression":"gzip","sha1":"9ab836ae153111b8dfbf5f2e7bbb7cf62230865f","size":394716049}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/ScaleArc+Instance","published_at":"2014-04-30T06:15:41.201Z"},{"id":"43933fd8-95fc-432d-9759-9b0faa322977","name":"ScaleArc-MySQL-Enterprise-1CPU-1GB","version":"20140430","os":"linux","requirements":{"max_memory":7680,"max_ram":7680,"min_memory":7680,"min_ram":7680},"type":"virtualmachine","description":"A
228
+ CentOS 6.5 image with ScaleArc MySQL 3.0 database traffic management software
229
+ preinstalled and configured. ScaleArc Enterprise 1CPU 1GB License.","files":[{"compression":"gzip","sha1":"d89ef87d7b43dbf181e440b8a3d0956ae64eb015","size":769013043}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/ScaleArc+Instance","published_at":"2014-04-30T17:44:24.629Z"},{"id":"c0383349-c005-47d4-b1fd-896b4326c673","name":"ScaleArc-MySQL-Enterprise-2CPU-2GB","version":"20140430","os":"linux","requirements":{"max_memory":15360,"max_ram":15360,"min_memory":15360,"min_ram":15360},"type":"virtualmachine","description":"A
230
+ CentOS 6.5 image with ScaleArc MySQL 3.0 database traffic management software
231
+ preinstalled and configured. ScaleArc Enterprise 2CPU 2GB License.","files":[{"compression":"gzip","sha1":"9f996f4dc855267d8ceebb516339c17203df1db0","size":769056889}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/ScaleArc+Instance","published_at":"2014-04-30T18:12:08.846Z"},{"id":"51163b3a-a706-c7f1-f0bd-f02e7d8f38f6","name":"ScaleArc-MySQL-Enterprise-5CPU-10GB","version":"20140430","os":"linux","requirements":{"max_memory":30720,"max_ram":30720,"min_memory":30720,"min_ram":30720},"type":"virtualmachine","description":"A
232
+ CentOS 6.5 image with ScaleArc MySQL 3.0 database traffic management software
233
+ preinstalled and configured. ScaleArc Enterprise 5CPU 10GB License.","files":[{"compression":"gzip","sha1":"0f20322eeff66f32f55b3ca975f406fc084287b3","size":769048909}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/ScaleArc+Instance","published_at":"2014-04-30T18:34:16.501Z"},{"id":"03cb9b7e-fed8-6462-c4bf-cefdb2e6430a","name":"ScaleArc-MySQL-Platinum-2CPU-2GB","version":"20140430","os":"linux","requirements":{"max_memory":15360,"max_ram":15360,"min_memory":15360,"min_ram":15360},"type":"virtualmachine","description":"A
234
+ CentOS 6.5 image with ScaleArc MySQL 3.0 database traffic management software
235
+ preinstalled and configured. ScaleArc Platinum 2CPU 2GB License.","files":[{"compression":"gzip","sha1":"4298d80c65ddb694f310c8623970439af938c569","size":768987835}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/ScaleArc+Instance","published_at":"2014-04-30T18:54:57.360Z"},{"id":"155628ba-8ccc-caf6-97a9-c55e86af6175","name":"ScaleArc-MySQL-Platinum-5CPU-32GB","version":"20140430","os":"linux","requirements":{"max_memory":70016,"max_ram":70016,"min_memory":70016,"min_ram":70016},"type":"virtualmachine","description":"A
236
+ CentOS 6.5 image with ScaleArc MySQL 3.0 database traffic management software
237
+ preinstalled and configured. ScaleArc Platinum 5CPU 32GB License.","files":[{"compression":"gzip","sha1":"a3349daa445495cb2070a0a742ccd27017525af9","size":769124231}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/ScaleArc+Instance","published_at":"2014-04-30T19:11:08.395Z"},{"id":"9ab3f722-d136-11e3-9f3a-6fcb23726ee3","name":"percona","version":"13.4.2","os":"smartos","requirements":{},"type":"smartmachine","description":"A
238
+ SmartOS 64-bit image pre-configured and optimized as a Percona 5.6.13 64-bit
239
+ MySQL server with Quickbackup and Sphinx Plug-in.","files":[{"compression":"gzip","sha1":"60e0392f68ca7baeb8ab64d2eeb5c2983598065c","size":264897924}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Joyent+Percona+SmartMachine","published_at":"2014-05-01T13:43:39Z"},{"id":"caac17a4-d512-11e3-9d41-b756aebcb18f","name":"base","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
240
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
241
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"c1cd9fb7cf1ef1184b6b3d2d3fc6b8d3d7dd5785","size":111457600}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-05-06T11:37:23Z"},{"id":"8639203c-d515-11e3-9571-5bf3a74f354f","name":"base64","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
242
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
243
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"4d1e613bf31f2349aba4cec0c046d39ec80f5b47","size":115138340}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-05-06T11:56:57Z"},{"id":"a2969206-d604-11e3-be79-dfd0c3676b44","name":"ghost","version":"13.4.2","os":"smartos","requirements":{},"type":"smartmachine","description":"A
244
+ SmartOS 64-bit image pre-configured and optimized as a Ghost blogging platform
245
+ (0.4.2) powered by Node.js (0.10.26).","files":[{"compression":"gzip","sha1":"eaa6eab4ca09a8783a149225354818f1042ec3f7","size":307403319}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Ghost+Instance","published_at":"2014-05-07T16:28:33Z"},{"id":"6d5debc0-dac3-11e3-8bc0-dfc25b68fd97","name":"postgresql","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
246
+ SmartOS 64-bit image pre-configured and optimized as a PostgreSQL 9.3.4 64-bit
247
+ server with PgAdmin and monitoring plugins.","files":[{"compression":"gzip","sha1":"94bb65cd07d4cfcce0f7cb135ad23da30759177d","size":167061186}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Postgresql+Instance","published_at":"2014-05-13T17:24:23Z"},{"id":"d05983cc-db7e-11e3-97fc-539ccfe9fa95","name":"mongodb","version":"14.1.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
248
+ SmartOS 64-bit image that comes with MongoDB 2.6.1 pre-installed and pre-configured
249
+ for maximum performance and scalability.","files":[{"compression":"gzip","sha1":"4199e1ad9460b142074cc27b75cf6e9d86ad6e4d","size":287701456}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2014-05-14T15:45:45Z"},{"id":"45ad5854-db8b-11e3-8f4c-0bc011b22b7d","name":"nodejs","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
250
+ SmartOS 32-bit image with Node.js 0.10.28, Npm 1.4.9, Git 1.9.0, and other
251
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"a178cc62c68fd23a27a0d3eaeb071a45bee752a3","size":405646584}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Node.JS+Instance","published_at":"2014-05-14T17:14:55Z"},{"id":"e65e0c4c-dc4b-11e3-b843-93672a0b57d8","name":"cassandra","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
252
+ SmartOS 64-bit image that comes with Apache Cassandra (2.0.6) and OpenJDK7
253
+ (1.7.51) pre-installed and configured.","files":[{"compression":"gzip","sha1":"b2fb9c963fb878e2bdb68d2fcdeae37ef1d82ac5","size":252413113}],"tags":{"role":"hadoop"},"homepage":"http://wiki.joyent.com/jpc2/Cassandra+Instance","published_at":"2014-05-15T16:13:49Z"},{"id":"7735fbba-3706-49f0-8020-9e69e11f8ea1","name":"ubuntu-certified-14.04","version":"20140519","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
254
+ 14.04 LTS (20140519 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"742a38087a121b05b393981f6cf6352b5b7e3028","size":228458574}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-05-19T16:09:24.000Z"},{"id":"0fd57f23-bc80-4bde-8ab2-64acf8a14fe9","name":"ubuntu-certified-12.04","version":"20140519","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
255
+ 12.04.4 LTS (20140519 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"6d665500d3a5baca34212541605f9bd615b7f2d5","size":223795831}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-05-19T21:30:00.000Z"},{"id":"bb41287c-e02a-11e3-aa6b-db678b82f5fc","name":"java","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
256
+ SmartOS 64-bit image with OpenJDK7 (1.7.51), Apache (2.4.9), Apache Tomcat
257
+ (7.0.53), Apache Ant (1.9.2) and Apache Maven (3.0.5) installed and configured
258
+ as well as the common Java ENV variables (JAVA_HOME, CATALINA_HOME, ANT_HOME)
259
+ setup for all users.","files":[{"compression":"gzip","sha1":"af6c1df4adcafa82a348d229ab1bd60a04433e1f","size":285757004}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Java+Instance","published_at":"2014-05-20T14:26:27Z"},{"id":"4b348706-e122-11e3-9cb4-9b2c5062255c","name":"nginx","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
260
+ SmartOS 64-bit image pre-configured and optimized as a Nginx 1.5.12 server. Comes
261
+ packaged with a default virtual host listening on all interfaces.","files":[{"compression":"gzip","sha1":"0714940a21259bf77e37a69e86549e9e9f996450","size":158675716}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Nginx+Instance","published_at":"2014-05-21T19:58:35Z"},{"id":"1daa8e14-e1ba-11e3-bd59-a3971b58fa36","name":"elasticsearch","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
262
+ SmartOS 64-bit image pre-configured and optimized as a ElasticSearch 1.1.1
263
+ server.","files":[{"compression":"gzip","sha1":"7dd5ef4da8d30840f994d962026999f37c019545","size":252933007}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Elasticsearch+Instance","published_at":"2014-05-22T14:05:21Z"},{"id":"f21af273-353f-4020-8ae1-3ac34481c7b4","name":"ubuntu-certified-12.04","version":"20140608","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
264
+ 12.04.4 LTS (20140608 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"6d3ddaab3351d35293bf391421f553bdeebb623c","size":224149137}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-06-08T03:30:31.000Z"},{"id":"286b0dc0-d09e-43f2-976a-bb1880ebdb6c","name":"ubuntu-certified-14.04","version":"20140608","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
265
+ 14.04 LTS (20140608 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"3521b8be0ea99d92fd79c79a644237da6f303c70","size":228650666}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-06-08T03:31:06.000Z"},{"id":"4b46e5e4-f17c-11e3-9da1-17ebb4120b97","name":"standard64","version":"14.1.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
266
+ SmartOS 64-bit image optimized for web development. Everything you need to
267
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
268
+ use.","files":[{"compression":"gzip","sha1":"02c795d944c1d14c10bea19d836653981750a569","size":623211054}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-06-11T15:23:07Z"},{"id":"39a95440-f193-11e3-9ce4-332a0d637d3a","name":"standard","version":"14.1.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
269
+ SmartOS 32-bit image optimized for web development. Everything you need to
270
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
271
+ use.","files":[{"compression":"gzip","sha1":"6f9a7d014d0cb16a0ee085722cfcc5f2de15376e","size":610574465}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-06-11T18:07:16Z"},{"id":"1eed39b6-f7cc-11e3-aacb-7bffef5bf8b6","name":"mysql-cluster","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
272
+ SmartOS 64-bit image pre-configured and optimized as a MySQL Cluster 7.3.4
273
+ server.","files":[{"compression":"gzip","sha1":"1ea1ecb7ea5017e583d922fbdb04ce81ca5abf47","size":269289167}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MySQL+Cluster+Instance","published_at":"2014-06-19T16:09:40Z"},{"id":"4db4df60-f880-11e3-a1c2-873cdb86240f","name":"nodejs","version":"14.1.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
274
+ SmartOS 32-bit image with Node.js 0.10.29, Npm 1.4.14, Git 1.9.0, and other
275
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"02aa73da886ddef1ba2925a62f0086d0d15da130","size":406737881}],"tags":{"role":"developer"},"homepage":"http://wiki.joyent.com/jpc2/Node.JS+Instance","published_at":"2014-06-20T13:39:27Z"},{"id":"d4d71370-0152-11e4-90ec-6b2e8e43d475","name":"mongodb","version":"14.1.1","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
276
+ SmartOS 64-bit image that comes with MongoDB 2.6.1 pre-installed and pre-configured
277
+ for maximum performance and scalability.","files":[{"compression":"gzip","sha1":"cf5f62257e540dfea3fa628a9be5212508595587","size":284782356}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2014-07-01T19:06:38Z"},{"id":"6dde8b1a-0780-11e4-a57b-6b7ac24a7cd4","name":"debian-7","version":"20140709","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
278
+ 7.5 (wheezy) 64-bit image with just essential packages installed. Ideal for
279
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"6e4ac8f1080a69d8fcb8274f9f33269d426223e7","size":284362786}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Debian","published_at":"2014-07-09T15:48:10Z"},{"id":"61a3035a-0864-11e4-b55b-9f87d4149e90","name":"centos-6","version":"20140710","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
280
+ 6.5 64-bit image with just essential packages installed. Ideal for users who
281
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"796fe262f182e26cb308cb357eb173f41cc7146a","size":291427802}],"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-07-10T18:59:55Z"},{"id":"603a190e-08ff-11e4-a54e-5b67f8ad1e60","name":"apache","version":"14.1.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
282
+ SmartOS 64-bit image pre-configured and optimized as an Apache 2.4.9 Server
283
+ with Event MPM and PHP-FPM. Comes packaged with a default virtual host listening
284
+ on all interfaces.","files":[{"compression":"gzip","sha1":"abff3c14ec5e46cf26e21e3d80939411d5d3c357","size":175030578}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Apache+Instance","published_at":"2014-07-11T13:29:24Z"},{"id":"bae9b95e-10c0-11e4-89d4-9fb9155d8bda","name":"base","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
285
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
286
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"182f29b1586feb3257b59ddd038e46eff61bdbed","size":111677064}],"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-07-21T10:21:08Z"},{"id":"d34c301e-10c3-11e4-9b79-5f67ca448df0","name":"base64","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
287
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
288
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"97b2eec4bf8e9ae8c4be43e32c8672be198278d6","size":116062401}],"homepage":"http://wiki.joyent.com/jpc2/SmartMachine+Base","published_at":"2014-07-21T10:43:17Z"},{"id":"b9c27838-1730-11e4-adbd-43d91422294f","name":"debian-7","version":"20140729","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
289
+ 7.6 (wheezy) 64-bit image with just essential packages installed. Ideal for
290
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"2f86447cbccea5e09a85663fb090d5912677d070","size":259612848}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Debian","published_at":"2014-07-29T14:57:57Z"},{"id":"202d0d26-1d57-4f2e-bf2c-489025845267","name":"ubuntu-certified-14.04","version":"20140729","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
291
+ 14.04.1 LTS (20140729 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"35827dd824857f958a1d5b77e320e208cabb2bd8","size":229320580}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-07-29T20:26:11.000Z"},{"id":"5c83d5ae-17f8-11e4-a658-73d42b8331cd","name":"cassandra","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
292
+ SmartOS 64-bit image that comes with Apache Cassandra (2.0.6) and OpenJDK7
293
+ (1.7.60) pre-installed and configured.","files":[{"compression":"gzip","sha1":"fec6f9b5ba91e8c38e7e825f124180410b6ce383","size":250503190}],"tags":{"role":"hadoop"},"homepage":"http://wiki.joyent.com/jpc2/Cassandra+Instance","published_at":"2014-07-30T14:46:59Z"},{"id":"6cb7ed80-1982-11e4-87c1-23539f8af0bd","name":"nodejs","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
294
+ SmartOS 32-bit image with Node.js 0.10.30, npm 1.4.21, Git 1.9.4, and other
295
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"47d44f49a72a7e1d71c5d8b7b7fd855d286664eb","size":566740000}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Node.JS+Instance","published_at":"2014-08-01T13:47:46Z"},{"id":"b451ca78-1ca5-11e4-8a4c-5f463f94e8f1","name":"elasticsearch","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
296
+ SmartOS 64-bit image pre-configured and optimized as a ElasticSearch 1.3.0
297
+ server.","files":[{"compression":"gzip","sha1":"4973cf67d19f9589d25a0ab8d05dd37ca947f10b","size":259481281}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Elasticsearch+Instance","published_at":"2014-08-05T13:37:54Z"},{"id":"6c970fa8-20ad-48e4-a694-0f68fa1f08fe","name":"ubuntu-certified-12.04","version":"20140806","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
298
+ 12.04.5 LTS (20140806 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"6227db6669e89145c4a06eb51b231f36d7fd8364","size":223980643}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-08-06T08:58:11.000Z"},{"id":"6a3b115a-26fb-11e4-99d9-ff07ee6b5097","name":"ghost","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
299
+ SmartOS 64-bit image pre-configured and optimized as a Ghost blogging platform
300
+ (0.4.2) powered by Node.js (0.10.26).","files":[{"compression":"gzip","sha1":"c7c03f46c88069b2c2ab9ed1890843b1d7d1c3e4","size":450850821}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Ghost+Instance","published_at":"2014-08-18T17:16:37Z"},{"id":"12d50dd0-27a5-11e4-bcda-13716a62b193","name":"apache","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
301
+ SmartOS 64-bit image pre-configured and optimized as an Apache 2.4.9 Server
302
+ with Event MPM and PHP-FPM. Comes packaged with a default virtual host listening
303
+ on all interfaces.","files":[{"compression":"gzip","sha1":"ab1f0614c25653dd7b91087344cca9096e249101","size":176986362}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Apache+Instance","published_at":"2014-08-19T13:31:05Z"},{"id":"83565bea-27a5-11e4-bfd0-b7aa35497452","name":"nginx","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
304
+ SmartOS 64-bit image pre-configured and optimized as a Nginx 1.6.0 server. Comes
305
+ packaged with a default virtual host listening on all interfaces.","files":[{"compression":"gzip","sha1":"02950a967fb3869fd4ad224bb83e4e2046f085bf","size":157330099}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Nginx+Instance","published_at":"2014-08-19T13:34:15Z"},{"id":"15673bee-27a6-11e4-a09e-1f6cb6c3cf57","name":"java","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
306
+ SmartOS 64-bit image with OpenJDK7 (1.7.60), Apache (2.4.9), Apache Tomcat
307
+ (7.0.54), Apache Ant (1.9.4) and Apache Maven (3.2.1) installed and configured
308
+ as well as the common Java ENV variables (JAVA_HOME, CATALINA_HOME, ANT_HOME)
309
+ setup for all users.","files":[{"compression":"gzip","sha1":"2296b7af6b03653e0c2c7c21ebe1cfaa06f5c915","size":286640099}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Java+Instance","published_at":"2014-08-19T13:38:19Z"},{"id":"ff422fc4-27a8-11e4-8050-f7ce39aa8165","name":"mysql-cluster","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
310
+ SmartOS 64-bit image pre-configured and optimized as a MySQL Cluster 7.3.6
311
+ server.","files":[{"compression":"gzip","sha1":"246031623472745c4dd0037b26a95fbf561d5ec2","size":270952673}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MySQL+Cluster+Instance","published_at":"2014-08-19T13:59:11Z"},{"id":"5e164fac-286d-11e4-9cf7-b3f73eefcd01","name":"centos-7","version":"20140820","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
312
+ 7.0-1406 64-bit image with just essential packages installed. Ideal for users
313
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"ce2f9f086547d4d27e0f4fac637f5e9a5e15af4d","size":353367215}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-08-20T13:24:52Z"},{"id":"8a40ff42-2934-11e4-85fb-f72497b29af4","name":"postgresql","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
314
+ SmartOS 64-bit image pre-configured and optimized as a PostgreSQL 9.3.4 64-bit
315
+ server with PgAdmin and monitoring plugins.","files":[{"compression":"gzip","sha1":"1fb82da703a743472a9619ccceec796d0525a13d","size":165583792}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/PostgreSQL+Instance","published_at":"2014-08-21T13:10:35Z"},{"id":"c6d11f02-293c-11e4-8924-e3de8053add8","name":"standard64","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
316
+ SmartOS 64-bit image optimized for web development. Everything you need to
317
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
318
+ use.","files":[{"compression":"gzip","sha1":"7095b1ffa143be30059073ebe6711058133020b0","size":796552101}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-08-21T14:09:31Z"},{"id":"b1186104-2944-11e4-a68c-cbc33fea4d3a","name":"standard","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
319
+ SmartOS 32-bit image optimized for web development. Everything you need to
320
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
321
+ use.","files":[{"compression":"gzip","sha1":"0aebf60953959fc3a78b60cf33e80f3b017252fd","size":775963725}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-08-21T15:06:11Z"},{"id":"a5775e36-2a02-11e4-942a-67ae7a242985","name":"mongodb","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
322
+ SmartOS 64-bit image that comes with MongoDB 2.6.4 pre-installed and pre-configured
323
+ for maximum performance and scalability.","files":[{"compression":"gzip","sha1":"7a959318d4ec3e029d52e32701912c5e883979b6","size":286293535}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2014-08-22T13:45:57Z"},{"id":"a95d2898-2c5d-11e4-a4eb-07dbc6315324","name":"percona","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
324
+ SmartOS 64-bit image pre-configured and optimized as a Percona 5.6.19 64-bit
325
+ MySQL server with Quickbackup and Sphinx Plug-in.","files":[{"compression":"gzip","sha1":"ea80808bc9e62748fa07bf473eed17d1c93b4c8a","size":236349966}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Percona+Instance","published_at":"2014-08-25T13:42:30Z"},{"id":"bf67d2fc-2ed1-11e4-a6ef-a7df3cdba7e9","name":"centos-6","version":"20140828","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
326
+ 6.5 64-bit image with just essential packages installed. Ideal for users who
327
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"baa12e09edbf471be44c79d4236b483ffb8390d8","size":459931394}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-08-28T16:38:32Z"},{"id":"85131910-383e-11e4-939e-139a3e5543a5","name":"rails","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
328
+ SmartOS 64-bit image with Ruby (2.1.2p95), Rails (4.1.5), Percona MySQL (5.6.19),
329
+ and Apache (2.4.10) installed and configured with mod_passenger as a Rails
330
+ web development environment.","files":[{"compression":"gzip","sha1":"58ae89eb931a7aafcaec880f44f187cee4d97d62","size":658737900}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Rails+Instance","published_at":"2014-09-09T16:29:47Z"},{"id":"1a320cbe-3cf8-11e4-8c1d-6363c8431d2d","name":"steelapp-1000H","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
331
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
332
+ 9.7 model 1000H. The SteelApp license will expire on Sat, 28 Feb 2015 and
333
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"3fabba864439bc78b4290c94328fc10ca1bfa657","size":456041947}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T16:48:20Z"},{"id":"6dcd8b4a-3cf9-11e4-a8de-dff717f5a77e","name":"steelapp-1000M-SAF","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
334
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
335
+ 9.7 model 1000M-SAF. The SteelApp license will expire on Sat, 28 Feb 2015
336
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"01d2e827a99e433c083101e5265dca835fbf1899","size":456064242}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T16:57:50Z"},{"id":"48091b94-3cfa-11e4-b908-236ad8e76e63","name":"steelapp-2000L","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
337
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
338
+ 9.7 model 2000L. The SteelApp license will expire on Sat, 28 Feb 2015 and
339
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"4291abf39ffbab046eb3c7bf6af1ac6e6f16d41e","size":456094818}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:03:56Z"},{"id":"fac3e28c-3cfa-11e4-8ff6-579cfefe4bb6","name":"steelapp-2000L-SAF","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
340
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
341
+ 9.7 model 2000L-SAF. The SteelApp license will expire on Sat, 28 Feb 2015
342
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"a84252859f7eb0b9683560cba4264044e0331316","size":456047505}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:08:55Z"},{"id":"ac2aa45c-3cfb-11e4-8dd5-37833e5e7c14","name":"steelapp-4000L","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
343
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
344
+ 9.7 model 4000L. The SteelApp license will expire on Sat, 28 Feb 2015 and
345
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"f18d2fd159937ebe7ea9b1749afa2bfa741a4010","size":456042705}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:13:53Z"},{"id":"5cd82338-3cfc-11e4-8240-1b6005652a24","name":"steelapp-500L-10","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
346
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
347
+ 9.7 model 500L-10. The SteelApp license will expire on Sat, 28 Feb 2015 and
348
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"cd74032630bc91e461e22c23682993324ec5f95a","size":456039651}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:18:49Z"},{"id":"011fa1d2-3cfd-11e4-9971-bba70756803e","name":"steelapp-500M-200","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
349
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
350
+ 9.7 model 500M-200. The SteelApp license will expire on Sat, 28 Feb 2015
351
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"f4250ced08ced07862204ec6773fdd35228d6de0","size":456053039}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:23:25Z"},{"id":"a4d0bf32-3cfd-11e4-a887-c7477e454cdb","name":"steelapp-2000L-STX","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
352
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
353
+ 9.7 model 2000L-STX. The SteelApp license will expire on Sat, 28 Feb 2015
354
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"8109b91c3fb35da9c0ac3928ccad5d102965edb7","size":456060101}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:28:00Z"},{"id":"5446a558-3cfe-11e4-9c4d-a3895128cce2","name":"steelapp-2000L-SAF-STX","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
355
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
356
+ 9.7 model 2000L-SAF-STX. The SteelApp license will expire on Sat, 28 Feb
357
+ 2015 and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"91b3d788328e258e9d107a833bc65250eab4023f","size":456087369}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:32:54Z"},{"id":"09b4a8ea-3cff-11e4-b0d5-6b9c7923af62","name":"steelapp-2000M-STX","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
358
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
359
+ 9.7 model 2000M-STX. The SteelApp license will expire on Sat, 28 Feb 2015
360
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"da571810e8e420c057cd8321191e954289879cf2","size":456048370}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:37:59Z"},{"id":"b9457226-3cff-11e4-bb0f-bfacaac01e7c","name":"steelapp-2000M-SAF-STX","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
361
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
362
+ 9.7 model 2000M-SAF-STX. The SteelApp license will expire on Sat, 28 Feb
363
+ 2015 and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"41b474c4e9b63c50771012fdd2abacd2d6c96c3d","size":456078347}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-09-15T17:42:53Z"},{"id":"66810176-4011-11e4-968f-938d7c9edfa2","name":"ws2012std-r2","version":"20140919","os":"windows","requirements":{"min_memory":4096,"min_ram":4096},"type":"virtualmachine","description":"Windows
364
+ Server 2012 Standard R2 64-bit image.","files":[{"compression":"gzip","sha1":"d63de63cdd148ac46e82c910da680ed68293b147","size":4953117518}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Windows+Server+2012+Standard","published_at":"2014-09-19T15:27:00Z"},{"id":"d0fb3c79-24b6-4e49-89c8-4e94aaa09099","name":"ubuntu-certified-12.04","version":"20140926","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
365
+ 12.04.5 LTS (20140926 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"bd7fa55f545124c505db1f5eea5cf4cae2de6d7e","size":223870217}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-09-26T03:15:09.000Z"},{"id":"c841e585-23b5-4861-87cd-379330f86f73","name":"ubuntu-certified-14.04","version":"20140926","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
366
+ 14.04.1 LTS (20140926 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"20c9d2996391f282650018e7caba5b76cab86465","size":229688370}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-09-26T06:37:47.000Z"},{"id":"3f57ffe8-47da-11e4-aa8b-dfb50a06586a","name":"standard64","version":"14.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
367
+ SmartOS 64-bit image optimized for web development. Everything you need to
368
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
369
+ use.","files":[{"compression":"gzip","sha1":"0f084b89024a0597acc35349a5b7a59fa8b24f3d","size":796777839}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-09-29T13:12:19Z"},{"id":"4ac797fa-47dd-11e4-a0f1-3ba648116698","name":"standard","version":"14.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
370
+ SmartOS 32-bit image optimized for web development. Everything you need to
371
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
372
+ use.","files":[{"compression":"gzip","sha1":"e2ad72ef19434d34b270ecd8c1c3519e7d9bc0e2","size":776315008}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-09-29T13:34:07Z"},{"id":"01a24b88-f957-4f9d-9946-fbd21b0612bf","name":"ubuntu-certified-12.04","version":"20140929","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
373
+ 12.04.5 LTS (20140929 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"4bea397362208995feb80bfceddaa8ce358fffc0","size":224168041}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-09-29T14:44:02.000Z"},{"id":"5f67e820-1489-4db7-9df2-1d8e3ec5cd90","name":"ubuntu-certified-14.04","version":"20140929","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
374
+ 14.04.1 LTS (20140929 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"370db1d97a8851c04c717c766d6a8a280aa6e429","size":229535627}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-09-29T15:44:07.000Z"},{"id":"acf16260-48e3-11e4-b6a5-0b29395f1d96","name":"couchdb","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
375
+ SmartOS 64-bit image pre-configured and optimized as a CouchDB 1.6.0 server. Comes
376
+ packaged listening on localhost only, SSL support, and a default adminstrator
377
+ user ''couchdb'' created.","files":[{"compression":"gzip","sha1":"c1a83182fcbd4e3790bfba64c514c4d1c0baa21f","size":228671403}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/CouchDB+Instance","published_at":"2014-09-30T20:52:21Z"},{"id":"26f85622-497a-11e4-ba93-3fe7b89aea1a","name":"centos-6","version":"20141001","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
378
+ 6.5 64-bit image with just essential packages installed. Ideal for users who
379
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"0b6c40e05f80b439d58b242062219dd3de1be1d3","size":480373079}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-10-01T14:49:31Z"},{"id":"0a90f47c-497e-11e4-9451-bfbecae680a8","name":"debian-7","version":"20141001","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
380
+ 7.6 (wheezy) 64-bit image with just essential packages installed. Ideal for
381
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"7696deb9fb5c102995a207bccf5af09d52224509","size":296741099}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Debian","published_at":"2014-10-01T15:17:21Z"},{"id":"553da8ba-499e-11e4-8bee-5f8dadc234ce","name":"centos-7","version":"20141001","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
382
+ 7 64-bit image with just essential packages installed. Ideal for users who
383
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"8583061fab7b84b638fdf8a6b1d04f1445e2e39d","size":530102853}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-10-01T19:08:31Z"},{"id":"d57314d6-4e1f-11e4-90d9-df9e3abb14fc","name":"neo4j","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
384
+ SmartOS 64-bit image pre-configured and optimized as a Neo4j 2.1.4 server. Packaged
385
+ with Neo4j listening on localhost by default and accessed through a SSH tunnel.","files":[{"compression":"gzip","sha1":"10da63a3eaf1c489b0db07cbdfb9e2e6738a14d1","size":274191689}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Neo4j+Instance","published_at":"2014-10-07T12:45:35Z"},{"id":"f34df870-4e26-11e4-8896-2372208152d9","name":"steelapp-1000M","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
386
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
387
+ 9.7 model 1000M. The SteelApp license will expire on Sat, 28 Feb 2015 and
388
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"e34b773529500659ff061717adf55a4c72704df7","size":456134850}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-10-07T13:36:31Z"},{"id":"badda358-53af-11e4-adbb-374e5eb5334a","name":"steelapp-developer","version":"14.2.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"Stingray
389
+ Traffic Manager 9.8.1 Developer Edition","files":[{"compression":"gzip","sha1":"7360808a6030828bec27474372eb9eb30b9f8e63","size":460960512}],"tags":{"role":"loadbalancer"},"homepage":"http://wiki.joyent.com/jpc2/SteelApp+Instance","published_at":"2014-10-14T14:38:13Z"},{"id":"46ca6534-53d5-11e4-8fc3-1384eeb2f1c3","name":"postgresql","version":"14.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
390
+ SmartOS 64-bit image pre-configured and optimized as a PostgreSQL 9.3.4 64-bit
391
+ server with PgAdmin and monitoring plugins.","files":[{"compression":"gzip","sha1":"ed113a5806c1293819f48dfd972965ccd2d64830","size":165678656}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/PostgreSQL+Instance","published_at":"2014-10-14T19:07:00Z"},{"id":"85b03d82-587b-11e4-9ffa-9fe28a7b9c8b","name":"wordpress","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
392
+ SmartOS 64-bit image pre-configured and optimized as a Wordpress blogging
393
+ platform (4.0) powered by PHP (5.5.16), Nginx (1.6.0), and Percona Server
394
+ (5.6.19).","files":[{"compression":"gzip","sha1":"ff7c3bd9f29a7ed0519974a38bfb43b8a383c0e2","size":244297357}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Wordpress+Instance","published_at":"2014-10-20T17:07:06Z"},{"id":"47c62485-9803-4d81-9023-c987f5100aff","name":"ubuntu-certified-14.10","version":"20141022.3","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
395
+ 14.10 (20141022.3 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"73073ac35107e3e70590561ef018a8177cfb8dac","size":239739390}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Ubuntu+Certified","published_at":"2014-10-22T20:05:12.000Z"},{"id":"7ae84590-6107-11e4-ac6b-cf658e1543b4","name":"redis","version":"14.2.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
396
+ SmartOS 64-bit image pre-configured and optimized as a Redis 2.8.9 server. Packaged
397
+ with Redis listening on localhost and authenticated with the ''redis_pw''
398
+ metadata password.","files":[{"compression":"gzip","sha1":"9ca94cfd4c3c729476f1ca471a731aa460da1931","size":149506504}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Redis+Instance","published_at":"2014-10-31T14:09:07Z"},{"id":"dfb86570-6109-11e4-9d18-7ba8c2cee608","name":"wordpress","version":"14.2.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
399
+ SmartOS 64-bit image pre-configured and optimized as a Wordpress blogging
400
+ platform (4.0) powered by PHP (5.5.16), Nginx (1.6.0), and Percona Server
401
+ (5.6.19).","files":[{"compression":"gzip","sha1":"d7c032239b468d259c24670717eabe3f35bbb996","size":252734414}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Wordpress+Instance","published_at":"2014-10-31T14:26:15Z"},{"id":"f37b10cc-6a9f-11e4-9181-e3d137d947bf","name":"centos-6","version":"20141112","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
402
+ 6.6 64-bit image with just essential packages installed. Ideal for users who
403
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"926f15b4b6ef667c4193ab6eab15c093030a1bc2","size":500818497}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-11-12T19:13:14Z"},{"id":"1f061f26-6aa9-11e4-941b-ff1a9c437feb","name":"centos-7","version":"20141112","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
404
+ 7 64-bit image with just essential packages installed. Ideal for users who
405
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"af40292f52781a5676ac4e604614c6dd735c9759","size":531473780}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-11-12T20:18:53Z"},{"id":"176db8f4-6c6c-11e4-90b1-035076b608cc","name":"freebsd-10","version":"20141115","os":"bsd","requirements":{},"type":"virtualmachine","description":"FreeBSD
406
+ 10.1-RELEASE 64-bit image with just essential packages installed. Ideal for
407
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"36c9c99e00807900d298f8eba964c59e677b1648","size":347721474}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Freebsd","published_at":"2014-11-15T02:07:03Z"},{"id":"00aec452-6e81-11e4-8474-ebfec9a1a911","name":"base","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
408
+ 32-bit SmartOS image with just essential packages installed. Ideal for users
409
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"b00a77408ddd9aeac85085b68b1cd22a07353956","size":106918297}],"homepage":"http://wiki.joyent.com/jpc2/Base+Instance","published_at":"2014-11-17T17:41:46Z"},{"id":"62f148f8-6e84-11e4-82c5-efca60348b9f","name":"base64","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
410
+ 64-bit SmartOS image with just essential packages installed. Ideal for users
411
+ who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"ec4226edc50ce85b6a1dec9f6826594644dc4f82","size":110958470}],"homepage":"http://wiki.joyent.com/jpc2/Base+Instance","published_at":"2014-11-17T18:06:00Z"},{"id":"22d0698e-6e98-11e4-97ca-470617ccfeae","name":"multiarch","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
412
+ multiarch SmartOS image with just essential packages installed. This is a
413
+ beta image only. Please submit any issues to https://github.com/joyent/pkgsrc/issues","files":[{"compression":"gzip","sha1":"bc6f4b6435f4bd86df234e71f126411d84051740","size":126069587}],"homepage":"http://wiki.joyent.com/jpc2/Base+Instance","published_at":"2014-11-17T20:27:22Z"},{"id":"d20b8738-7a2a-11e4-bea0-83cb697e6c7c","name":"freebsd-10","version":"20141202","os":"bsd","requirements":{},"type":"virtualmachine","description":"FreeBSD
414
+ 10.1-RELEASE 64-bit image with just essential packages installed. Ideal for
415
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"b238beeb3db07ad778d74f0c95d5adaf98e6ff16","size":344500012}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Freebsd","published_at":"2014-12-02T13:55:05Z"},{"id":"1ff890f4-7a3e-11e4-902e-7f020ac0d6b3","name":"debian-7","version":"20141202","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
416
+ 7.7 (wheezy) 64-bit image with just essential packages installed. Ideal for
417
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"edadec18dbd2cc863e241b97b07daf4b7c55e507","size":283454953}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Debian","published_at":"2014-12-02T16:13:17Z"},{"id":"28b59658-7a50-11e4-b5ec-6b4f767837d5","name":"apache","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
418
+ SmartOS 64-bit image pre-configured and optimized as an Apache 2.4.10 Server
419
+ with Event MPM and PHP-FPM. Comes packaged with a default virtual host listening
420
+ on all interfaces.","files":[{"compression":"gzip","sha1":"8395cd5327e299c91d995709fc7165f211e5f602","size":175745927}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Apache+Instance","published_at":"2014-12-02T18:22:21Z"},{"id":"f9da09c6-7a55-11e4-b5eb-d37be7980fa0","name":"nginx","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
421
+ SmartOS 64-bit image pre-configured and optimized as a Nginx 1.7.4 server. Comes
422
+ packaged with a default virtual host listening on all interfaces.","files":[{"compression":"gzip","sha1":"9e4eb7110821767fb5ce30374b7f0dc0acb1539d","size":154953416}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Nginx+Instance","published_at":"2014-12-02T19:04:00Z"},{"id":"b1fd9c92-7a5c-11e4-8bb3-7748d9d661bb","name":"nodejs","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
423
+ SmartOS 64-bit image with Node.js 0.10.33, Npm 1.4.28, Git 2.1.0, and other
424
+ useful packages pre-installed. Ideal for Node.js applications.","files":[{"compression":"gzip","sha1":"fbda2ff5459407a62702f46875bc9794c65e2964","size":581647006}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Node.js+Instance","published_at":"2014-12-02T19:52:05Z"},{"id":"b1df4936-7a5c-11e4-98ed-dfe1fa3a813a","name":"centos-7","version":"20141202","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
425
+ 7 64-bit image with just essential packages installed. Ideal for users who
426
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"da7dfda6cee2430710feb9533127568bf68e751a","size":527763212}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-12-02T19:52:06Z"},{"id":"b94d11d6-7a65-11e4-add0-93f38d3f5c5c","name":"centos-6","version":"20141202","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
427
+ 6.6 64-bit image with just essential packages installed. Ideal for users who
428
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"d95d4538c5442648eeff84a127dedf7a972d883a","size":390147127}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Centos","published_at":"2014-12-02T20:56:44Z"},{"id":"80b82cd2-7afd-11e4-acf8-7f01d128a23d","name":"neo4j","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
429
+ SmartOS 64-bit image pre-configured and optimized as a Neo4j 2.1.4 server. Packaged
430
+ with Neo4j listening on localhost by default and accessed through a SSH tunnel.","files":[{"compression":"gzip","sha1":"660045207122be90262e3e1c1e26b9d39beff3d7","size":269147027}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Neo4j+Instance","published_at":"2014-12-03T15:03:12Z"},{"id":"81ea4dc2-7aff-11e4-866f-273a920433fb","name":"couchdb","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
431
+ SmartOS 64-bit image pre-configured and optimized as a CouchDB 1.6.0 server. Comes
432
+ packaged listening on localhost only, SSL support, and a default adminstrator
433
+ user ''couchdb'' created.","files":[{"compression":"gzip","sha1":"9f2f62d59163228f0e670eae2752d7b8330ad8bb","size":223699140}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/CouchDB+Instance","published_at":"2014-12-03T15:17:33Z"},{"id":"fb670f9c-7b03-11e4-9a27-23991bcc197f","name":"java","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
434
+ SmartOS 64-bit image with OpenJDK7 (1.7.65), Apache (2.4.10), Apache Tomcat
435
+ (7.0.54), Apache Ant (1.9.4) and Apache Maven (3.2.1) installed and configured
436
+ as well as the common Java ENV variables (JAVA_HOME, CATALINA_HOME, ANT_HOME)
437
+ setup for all users.","files":[{"compression":"gzip","sha1":"df352d7ebd2ca94b61368761c66fa93cbe64dd21","size":282201620}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Java+Instance","published_at":"2014-12-03T15:49:34Z"},{"id":"0423f1f6-7b34-11e4-9364-9bbb102fba57","name":"elasticsearch","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
438
+ SmartOS 64-bit image pre-configured and optimized as a ElasticSearch 1.4.0
439
+ server.","files":[{"compression":"gzip","sha1":"5647cbbbd34752063c0694e500fa24806a885116","size":254017762}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Elasticsearch+Instance","published_at":"2014-12-03T21:33:25Z"},{"id":"8b6589fc-7bdb-11e4-91e5-bfccba841132","name":"mongodb","version":"14.3.0","os":"smartos","requirements":{"min_memory":1024,"min_ram":1024},"type":"smartmachine","description":"A
440
+ SmartOS 64-bit image that comes with MongoDB 2.6.5 pre-installed and pre-configured
441
+ for maximum performance and scalability.","files":[{"compression":"gzip","sha1":"da571125eb57d864854bcebe912dd449182a7659","size":281022166}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MongoDB+Instance","published_at":"2014-12-04T17:32:38Z"},{"id":"28fbb45a-7bde-11e4-8b97-0b85d363b8f2","name":"mysql-cluster","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
442
+ SmartOS 64-bit image pre-configured and optimized as a MySQL Cluster 7.3.6
443
+ server.","files":[{"compression":"gzip","sha1":"5d6c59e18667605e39be535333a5e98fa6893595","size":266068564}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/MySQL+Cluster+Instance","published_at":"2014-12-04T17:51:21Z"},{"id":"2ca7cf08-7be3-11e4-9b45-1f6507130bb7","name":"postgresql","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
444
+ SmartOS 64-bit image pre-configured and optimized as a PostgreSQL 9.3.5 64-bit
445
+ server with PgAdmin and monitoring plugins.","files":[{"compression":"gzip","sha1":"4e27b98b1c08d6bf7565758202a099d257aa4e61","size":160727862}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/PostgreSQL+Instance","published_at":"2014-12-04T18:27:15Z"},{"id":"cb52149a-7be5-11e4-8372-fff162be8304","name":"redis","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
446
+ SmartOS 64-bit image pre-configured and optimized as a Redis 2.8.13 server. Packaged
447
+ with Redis listening on localhost and authenticated with the ''redis_pw''
448
+ metadata password.","files":[{"compression":"gzip","sha1":"a4ecc11d9caf204b9a81bb786748433b7e6357b3","size":144557853}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Redis+Instance","published_at":"2014-12-04T18:46:00Z"},{"id":"76a2a510-7c8d-11e4-84b8-4b7fc8e22d0e","name":"ghost","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
449
+ SmartOS 64-bit image pre-configured and optimized as a Ghost blogging platform
450
+ (0.5.6) powered by Node.js (0.10.33).","files":[{"compression":"gzip","sha1":"d62ed80edb0999a1a4db95bd7cae828616637784","size":450097907}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Ghost+Instance","published_at":"2014-12-05T14:46:13Z"},{"id":"afdb1332-7ca4-11e4-a1cd-d7fdf34298e8","name":"standard","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
451
+ SmartOS 32-bit image optimized for web development. Everything you need to
452
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
453
+ use.","files":[{"compression":"gzip","sha1":"a4ecad7b66114704074bcd6ee928dd341a65f883","size":765285959}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-12-05T17:32:27Z"},{"id":"859e9466-7ef4-11e4-b103-27886e7d9a7d","name":"standard64","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
454
+ SmartOS 64-bit image optimized for web development. Everything you need to
455
+ build a web stack such as Ruby, Apache, and MySQL is installed and ready to
456
+ use.","files":[{"compression":"gzip","sha1":"e5fbeb60aaee41adbc4c4d2081beee57d683bf17","size":785924796}],"tags":{"role":"os"},"homepage":"http://wiki.joyent.com/jpc2/Standard+Instance","published_at":"2014-12-08T16:08:58Z"},{"id":"d905efd2-817e-11e4-9a66-f75ab11da808","name":"magento","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
457
+ SmartOS 64-bit image pre-configured and optimized as a Magento (1.9.1.0) server
458
+ powered by Nginx (1.7.4), PHP-FPM (5.5.18), and Percona Server (5.6.19).","files":[{"compression":"gzip","sha1":"c992737c9d2801c081874a4202433e69d7a85ac2","size":267832484}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Magento+Instance","published_at":"2014-12-11T21:44:12Z"},{"id":"788dfb50-846b-11e4-802e-bb9df856acab","name":"wordpress","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
459
+ SmartOS 64-bit image pre-configured and optimized as a Wordpress blogging
460
+ platform (4.0.1) powered by PHP (5.5.18), Nginx (1.7.4), and Percona Server
461
+ (5.6.21).","files":[{"compression":"gzip","sha1":"f2c79fd682d7dc8f56ff249b0cb79829534aa35b","size":251603386}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Wordpress+Instance","published_at":"2014-12-15T15:03:03Z"},{"id":"e62f4756-8478-11e4-b202-2304793d3eeb","name":"percona","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
462
+ SmartOS 64-bit image pre-configured and optimized as a Percona 5.6.21 64-bit
463
+ MySQL server with Quickbackup and Sphinx Plug-in.","files":[{"compression":"gzip","sha1":"14cdb54797b89bcd9688b37bbcf2aa5d3eb017d1","size":232775569}],"tags":{"role":"database"},"homepage":"http://wiki.joyent.com/jpc2/Percona+Instance","published_at":"2014-12-15T16:39:11Z"},{"id":"c95ba4f2-8546-11e4-97b5-0b9bb0bc4227","name":"rails","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
464
+ SmartOS 64-bit image with Ruby (2.1.4p265), Rails (4.1.8), Percona MySQL (5.6.21),
465
+ and Apache (2.4.10) installed and configured with mod_passenger as a Rails
466
+ web development environment.","files":[{"compression":"gzip","sha1":"adbb9b2f44a60e145242256042fd9beb4293b4a4","size":666150446}],"tags":{"role":"development"},"homepage":"http://wiki.joyent.com/jpc2/Rails+Instance","published_at":"2014-12-16T17:12:58Z"},{"id":"2d7e5054-95e8-11e4-9bc9-835655bded42","name":"wordpress","version":"14.3.1","os":"smartos","requirements":{},"type":"smartmachine","description":"A
467
+ SmartOS 64-bit image pre-configured and optimized as a Wordpress blogging
468
+ platform (4.1) powered by PHP (5.5.18), Nginx (1.7.4), and Percona Server
469
+ (5.6.21).","files":[{"compression":"gzip","sha1":"05c6eb418e9be6626f84a797a759b48ee41d1cca","size":251627163}],"tags":{"role":"other"},"homepage":"http://wiki.joyent.com/jpc2/Wordpress+Instance","published_at":"2015-01-06T21:08:34Z"},{"id":"0fc6f7c2-9daa-11e4-b3f0-5beb0ac4b842","name":"memcached","version":"14.3.0","os":"smartos","requirements":{},"type":"smartmachine","description":"A
470
+ SmartOS 64-bit image pre-configured and optimized as a Memcached 1.4.20 server.","files":[{"compression":"gzip","sha1":"8e1e26cd412ea52e2dc69cb5ccec721b32642244","size":144090777}],"tags":{"role":"other"},"homepage":"http://docs.joyent.com/images/smartos/memcached","published_at":"2015-01-16T18:04:05Z"},{"id":"ebb37e88-9ff6-11e4-87ae-fbb5135b9baa","name":"debian-7","version":"20150119","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
471
+ 7.8 (wheezy) 64-bit image with just essential packages installed. Ideal for
472
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"01a7efcb300b0b17fce1d06589560a38dfd8dc89","size":283522981}],"tags":{"role":"os"},"homepage":"https://docs.joyent.com/images/linux/debian","published_at":"2015-01-19T16:19:19Z"},{"id":"054fc4e2-a258-11e4-8081-93b0eafb7687","name":"steelapp-1000H","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
473
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
474
+ 9.7 model 1000H. The Stingray license will expire on Mon, 29 Feb 2016 and
475
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"b727428c63baf6f3fc6b679c0f8c85dd966c5f04","size":451104884}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T16:59:24Z"},{"id":"db92e908-a258-11e4-a54e-2ba5bada3a0e","name":"steelapp-1000M","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
476
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
477
+ 9.7 model 1000M. The Stingray license will expire on Mon, 29 Feb 2016 and
478
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"c154fa3ba1e717cb71351406af5b3ffc2ff5faaa","size":451142473}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:05:23Z"},{"id":"a464570e-a259-11e4-84ef-cb0d50990b3f","name":"steelapp-2000L","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
479
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
480
+ 9.7 model 2000L. The Stingray license will expire on Mon, 29 Feb 2016 and
481
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"3735d9e91482920c918ca0ae4bc6e9b8f7dfe7b5","size":451131294}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:11:00Z"},{"id":"8ce6ca66-a25a-11e4-9bb5-efcbea269ad6","name":"steelapp-2000L-STX","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
482
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
483
+ 9.7 model 2000L-STX. The Stingray license will expire on Mon, 29 Feb 2016
484
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"05afc65f9ace10317b985c7bebb04c843501842d","size":451108123}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:17:30Z"},{"id":"62f6590a-a25b-11e4-b674-b380f8fc1cd8","name":"steelapp-2000M-STX","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
485
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
486
+ 9.7 model 2000M-STX. The Stingray license will expire on Mon, 29 Feb 2016
487
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"eecc1efa95ba1d66715a084d3926f86e1b0ad356","size":451140898}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:23:29Z"},{"id":"3e9908e0-a25c-11e4-b30b-4b3b58b077e7","name":"steelapp-4000L","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
488
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
489
+ 9.7 model 4000L. The Stingray license will expire on Mon, 29 Feb 2016 and
490
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"d217f154fa9079c983127a06040b9f7a001bdfcb","size":451129640}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:29:38Z"},{"id":"fff47e66-a25c-11e4-afdb-8b3070cd37f2","name":"steelapp-500L-10","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
491
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
492
+ 9.7 model 500L-10. The Stingray license will expire on Mon, 29 Feb 2016 and
493
+ will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"0cea9b5bbd7e2ea800f89bbb9c075784dedee9f7","size":451106328}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:35:03Z"},{"id":"cf72a56e-a25d-11e4-b345-ab5d66e48aa6","name":"steelapp-500M-200","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
494
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
495
+ 9.7 model 500M-200. The Stingray license will expire on Mon, 29 Feb 2016
496
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"54086d239d16b507131a00bc318e9a18825be193","size":451097866}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-22T17:40:50Z"},{"id":"c4c6acfe-a30d-11e4-bdae-5348e1edb64f","name":"steelapp-1000M-SAF","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
497
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
498
+ 9.7 model 1000M-SAF. The Stingray license will expire on Mon, 29 Feb 2016
499
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"938a584a3789d5025d2246ec5dcf386d9d925097","size":451070636}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-23T14:40:24Z"},{"id":"95bb0de6-a30e-11e4-a14b-e7eed77da308","name":"steelapp-2000L-SAF","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
500
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
501
+ 9.7 model 2000L-SAF. The Stingray license will expire on Mon, 29 Feb 2016
502
+ and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"1f61a7c51a89d99cfb107310fecfeaa284830169","size":451117200}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-23T14:46:15Z"},{"id":"70182d84-a30f-11e4-833a-533091d7da25","name":"steelapp-2000L-SAF-STX","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
503
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
504
+ 9.7 model 2000L-SAF-STX. The Stingray license will expire on Mon, 29 Feb
505
+ 2016 and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"4698ed4d451e411b332c1f59af69c6d46c02d304","size":451081472}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-23T14:52:21Z"},{"id":"3694d926-a310-11e4-bf79-5b3a7949ade7","name":"steelapp-2000M-SAF-STX","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"A
506
+ SmartOS 64-bit image pre-configured and optimized as a SteelApp Traffic Manager
507
+ 9.7 model 2000M-SAF-STX. The Stingray license will expire on Mon, 29 Feb
508
+ 2016 and will be renewed automatically if your virtual machine is still active.","files":[{"compression":"gzip","sha1":"74d9bda748391bdec37c59e561ade5fdcb01cc55","size":451152039}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-23T14:57:54Z"},{"id":"c8c59f3c-a343-11e4-8e39-9360169bcaae","name":"steelapp-developer","version":"14.3.0","os":"smartos","requirements":{"min_memory":1792,"min_ram":1792},"type":"smartmachine","description":"Stingray
509
+ Traffic Manager 9.8.1 Developer Edition","files":[{"compression":"gzip","sha1":"76ef7d400b04aa57f716679c505a1fe2650f7115","size":455950602}],"tags":{"role":"loadbalancer"},"homepage":"http://docs.joyent.com/images/smartos/steelapp","published_at":"2015-01-23T21:07:03Z"},{"id":"be16f02b-900d-40ab-b40e-c90033989adf","name":"ubuntu-certified-12.04","version":"20150127","os":"linux","requirements":{},"type":"virtualmachine","description":"Ubuntu
510
+ 12.04.5 LTS (20150127 64-bit). Certified Ubuntu Server Cloud Image from Canonical.","files":[{"compression":"gzip","sha1":"8707f6557cc7e6ee2a98f90f708e11591cdd01a6","size":224738942}],"tags":{"default_user":"ubuntu","role":"os"},"homepage":"https://docs.joyent.com/images/linux/ubuntu-certified","published_at":"2015-01-27T19:22:09.000Z"},{"id":"02dbab66-a70a-11e4-819b-b3dc41b361d6","name":"centos-7","version":"20150128","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
511
+ 7 64-bit image with just essential packages installed. Ideal for users who
512
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"9adafa4a203f09865587eb8e35f15f640be7b677","size":549441715}],"tags":{"role":"os"},"homepage":"https://docs.joyent.com/images/linux/centos","published_at":"2015-01-28T16:23:36Z"},{"id":"5becfd74-a70d-11e4-93a6-470507be237c","name":"centos-6","version":"20150128","os":"linux","requirements":{},"type":"virtualmachine","description":"CentOS
513
+ 6.6 64-bit image with just essential packages installed. Ideal for users who
514
+ are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"2460f7b4e1756293ba7c1d1d31de209441f00350","size":450933963}],"tags":{"role":"os"},"homepage":"https://docs.joyent.com/images/linux/centos","published_at":"2015-01-28T16:47:34Z"},{"id":"5f41692e-a70d-11e4-8c2d-afc6735144dc","name":"debian-7","version":"20150128","os":"linux","requirements":{},"type":"virtualmachine","description":"Debian
515
+ 7.8 (wheezy) 64-bit image with just essential packages installed. Ideal for
516
+ users who are comfortable with setting up their own environment and tools.","files":[{"compression":"gzip","sha1":"8fea3d540d0e6386471354eeef2dd28888a8e540","size":294473520}],"tags":{"role":"os"},"homepage":"https://docs.joyent.com/images/linux/debian","published_at":"2015-01-28T16:47:40Z"}]'
517
+ http_version:
518
+ recorded_at: Sun, 15 Feb 2015 09:39:06 GMT
519
+ recorded_with: VCR 2.9.3