scalingo 3.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +6 -0
  3. data/.rubocop.yml +16 -0
  4. data/.travis.yml +24 -0
  5. data/CHANGELOG.md +29 -0
  6. data/Gemfile +4 -0
  7. data/Gemfile.lock +110 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +147 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +12 -0
  12. data/bin/setup +8 -0
  13. data/lib/scalingo.rb +2 -0
  14. data/lib/scalingo/api/client.rb +79 -0
  15. data/lib/scalingo/api/endpoint.rb +23 -0
  16. data/lib/scalingo/api/response.rb +71 -0
  17. data/lib/scalingo/auth.rb +21 -0
  18. data/lib/scalingo/auth/keys.rb +56 -0
  19. data/lib/scalingo/auth/scm_integrations.rb +57 -0
  20. data/lib/scalingo/auth/tokens.rb +78 -0
  21. data/lib/scalingo/auth/two_factor_auth.rb +61 -0
  22. data/lib/scalingo/auth/user.rb +31 -0
  23. data/lib/scalingo/bearer_token.rb +20 -0
  24. data/lib/scalingo/client.rb +105 -0
  25. data/lib/scalingo/config.rb +38 -0
  26. data/lib/scalingo/error/expired_token.rb +6 -0
  27. data/lib/scalingo/error/unauthenticated.rb +6 -0
  28. data/lib/scalingo/errors.rb +2 -0
  29. data/lib/scalingo/regional.rb +35 -0
  30. data/lib/scalingo/regional/addons.rb +109 -0
  31. data/lib/scalingo/regional/apps.rb +109 -0
  32. data/lib/scalingo/regional/collaborators.rb +57 -0
  33. data/lib/scalingo/regional/containers.rb +57 -0
  34. data/lib/scalingo/regional/deployments.rb +44 -0
  35. data/lib/scalingo/regional/domains.rb +70 -0
  36. data/lib/scalingo/regional/environment.rb +83 -0
  37. data/lib/scalingo/regional/events.rb +55 -0
  38. data/lib/scalingo/regional/logs.rb +38 -0
  39. data/lib/scalingo/regional/metrics.rb +41 -0
  40. data/lib/scalingo/regional/notifiers.rb +96 -0
  41. data/lib/scalingo/regional/operations.rb +18 -0
  42. data/lib/scalingo/regional/scm_repo_links.rb +109 -0
  43. data/lib/scalingo/version.rb +3 -0
  44. data/samples/auth/keys/_meta.json +13 -0
  45. data/samples/auth/keys/all-200.json +62 -0
  46. data/samples/auth/keys/create-201.json +67 -0
  47. data/samples/auth/keys/create-422.json +34 -0
  48. data/samples/auth/keys/destroy-204.json +19 -0
  49. data/samples/auth/keys/destroy-404.json +19 -0
  50. data/samples/auth/keys/show-200.json +60 -0
  51. data/samples/auth/keys/show-404.json +19 -0
  52. data/samples/auth/scm_integrations/_meta.json +14 -0
  53. data/samples/auth/scm_integrations/all-200.json +41 -0
  54. data/samples/auth/scm_integrations/create-201.json +41 -0
  55. data/samples/auth/scm_integrations/create-422.json +36 -0
  56. data/samples/auth/scm_integrations/destroy-204.json +15 -0
  57. data/samples/auth/scm_integrations/destroy-404.json +23 -0
  58. data/samples/auth/scm_integrations/show-200.json +34 -0
  59. data/samples/auth/scm_integrations/show-404.json +23 -0
  60. data/samples/auth/tokens/_meta.json +13 -0
  61. data/samples/auth/tokens/all-200.json +32 -0
  62. data/samples/auth/tokens/create-201.json +37 -0
  63. data/samples/auth/tokens/destroy-204.json +19 -0
  64. data/samples/auth/tokens/destroy-404.json +19 -0
  65. data/samples/auth/tokens/exchange-200.json +25 -0
  66. data/samples/auth/tokens/exchange-401.json +24 -0
  67. data/samples/auth/tokens/renew-200.json +32 -0
  68. data/samples/auth/tokens/renew-404.json +20 -0
  69. data/samples/auth/two_factor_auth/_meta.json +10 -0
  70. data/samples/auth/two_factor_auth/disable-not-initiated.json +23 -0
  71. data/samples/auth/two_factor_auth/disable-success.json +29 -0
  72. data/samples/auth/two_factor_auth/initiate-already-enabled.json +29 -0
  73. data/samples/auth/two_factor_auth/initiate-success.json +36 -0
  74. data/samples/auth/two_factor_auth/initiate-wrong-provider.json +29 -0
  75. data/samples/auth/two_factor_auth/status.json +29 -0
  76. data/samples/auth/two_factor_auth/validate-not-initiated.json +29 -0
  77. data/samples/auth/two_factor_auth/validate-success.json +49 -0
  78. data/samples/auth/two_factor_auth/validate-wrong.json +29 -0
  79. data/samples/auth/user/_meta.json +10 -0
  80. data/samples/auth/user/self.json +54 -0
  81. data/samples/auth/user/update-200.json +59 -0
  82. data/samples/auth/user/update-422.json +33 -0
  83. data/samples/regional/addons/_meta.json +22 -0
  84. data/samples/regional/addons/categories-guest.json +36 -0
  85. data/samples/regional/addons/categories-logged.json +37 -0
  86. data/samples/regional/addons/destroy-204.json +19 -0
  87. data/samples/regional/addons/destroy-404.json +24 -0
  88. data/samples/regional/addons/find-200.json +48 -0
  89. data/samples/regional/addons/find-404.json +24 -0
  90. data/samples/regional/addons/for-200.json +50 -0
  91. data/samples/regional/addons/providers-guest.json +588 -0
  92. data/samples/regional/addons/providers-logged.json +705 -0
  93. data/samples/regional/addons/provision-201.json +58 -0
  94. data/samples/regional/addons/provision-400.json +29 -0
  95. data/samples/regional/addons/sso-200.json +49 -0
  96. data/samples/regional/addons/sso-404.json +24 -0
  97. data/samples/regional/addons/update-200.json +58 -0
  98. data/samples/regional/addons/update-404.json +30 -0
  99. data/samples/regional/apps/_meta.json +52 -0
  100. data/samples/regional/apps/all.json +99 -0
  101. data/samples/regional/apps/create-201.json +66 -0
  102. data/samples/regional/apps/create-422.json +34 -0
  103. data/samples/regional/apps/destroy-204.json +19 -0
  104. data/samples/regional/apps/destroy-404.json +24 -0
  105. data/samples/regional/apps/destroy-422.json +27 -0
  106. data/samples/regional/apps/find-200.json +60 -0
  107. data/samples/regional/apps/find-404.json +24 -0
  108. data/samples/regional/apps/logs_url.json +62 -0
  109. data/samples/regional/apps/rename-200.json +65 -0
  110. data/samples/regional/apps/rename-404.json +29 -0
  111. data/samples/regional/apps/rename-422.json +33 -0
  112. data/samples/regional/apps/transfer-200.json +65 -0
  113. data/samples/regional/apps/transfer-404.json +27 -0
  114. data/samples/regional/apps/transfer-422.json +34 -0
  115. data/samples/regional/apps/update-200.json +66 -0
  116. data/samples/regional/apps/update-stack-404.json +30 -0
  117. data/samples/regional/collaborators/_meta.json +17 -0
  118. data/samples/regional/collaborators/accept-200.json +60 -0
  119. data/samples/regional/collaborators/accept-400.json +24 -0
  120. data/samples/regional/collaborators/accept-404.json +24 -0
  121. data/samples/regional/collaborators/destroy-204.json +19 -0
  122. data/samples/regional/collaborators/destroy-404.json +24 -0
  123. data/samples/regional/collaborators/for-200.json +34 -0
  124. data/samples/regional/collaborators/invite-201.json +37 -0
  125. data/samples/regional/collaborators/invite-422.json +34 -0
  126. data/samples/regional/containers/_meta.json +25 -0
  127. data/samples/regional/containers/for-200.json +39 -0
  128. data/samples/regional/containers/restart-202.json +28 -0
  129. data/samples/regional/containers/restart-422.json +33 -0
  130. data/samples/regional/containers/scale-202.json +48 -0
  131. data/samples/regional/containers/scale-422.json +36 -0
  132. data/samples/regional/containers/sizes-guest.json +115 -0
  133. data/samples/regional/containers/sizes-logged.json +116 -0
  134. data/samples/regional/deployments/_meta.json +8 -0
  135. data/samples/regional/deployments/find-200.json +45 -0
  136. data/samples/regional/deployments/find-404.json +24 -0
  137. data/samples/regional/deployments/for-with-paging.json +35 -0
  138. data/samples/regional/deployments/for-without-pages.json +56 -0
  139. data/samples/regional/deployments/logs-200.json +22 -0
  140. data/samples/regional/deployments/logs-404.json +24 -0
  141. data/samples/regional/domains/_meta.json +21 -0
  142. data/samples/regional/domains/create-201.json +44 -0
  143. data/samples/regional/domains/create-422.json +33 -0
  144. data/samples/regional/domains/destroy-204.json +19 -0
  145. data/samples/regional/domains/destroy-404.json +24 -0
  146. data/samples/regional/domains/find-200.json +38 -0
  147. data/samples/regional/domains/find-404.json +24 -0
  148. data/samples/regional/domains/for-200.json +40 -0
  149. data/samples/regional/domains/update-200.json +44 -0
  150. data/samples/regional/domains/update-404.json +30 -0
  151. data/samples/regional/domains/update-422.json +33 -0
  152. data/samples/regional/environment/_meta.json +43 -0
  153. data/samples/regional/environment/bulk-destroy-204.json +19 -0
  154. data/samples/regional/environment/bulk-update-200.json +70 -0
  155. data/samples/regional/environment/create-201.json +36 -0
  156. data/samples/regional/environment/create-422.json +37 -0
  157. data/samples/regional/environment/destroy-204.json +19 -0
  158. data/samples/regional/environment/destroy-404.json +24 -0
  159. data/samples/regional/environment/for-200.json +31 -0
  160. data/samples/regional/environment/update-200.json +35 -0
  161. data/samples/regional/environment/update-404.json +30 -0
  162. data/samples/regional/events/_meta.json +3 -0
  163. data/samples/regional/events/all-200.json +619 -0
  164. data/samples/regional/events/categories-guest.json +66 -0
  165. data/samples/regional/events/categories-logged.json +67 -0
  166. data/samples/regional/events/for-200.json +404 -0
  167. data/samples/regional/events/types-guest.json +288 -0
  168. data/samples/regional/events/types-logged.json +289 -0
  169. data/samples/regional/logs/_meta.json +11 -0
  170. data/samples/regional/logs/archives-200.json +28 -0
  171. data/samples/regional/logs/get-guest-200.json +18 -0
  172. data/samples/regional/logs/get-logged-200.json +19 -0
  173. data/samples/regional/logs/get-with-limit-200.json +18 -0
  174. data/samples/regional/metrics/_meta.json +15 -0
  175. data/samples/regional/metrics/for-invalid-400.json +23 -0
  176. data/samples/regional/metrics/for-valid-cpu-200.json +747 -0
  177. data/samples/regional/metrics/for-valid-router-404.json +23 -0
  178. data/samples/regional/metrics/types-guest.json +66 -0
  179. data/samples/regional/metrics/types-logged.json +67 -0
  180. data/samples/regional/notifiers/_meta.json +23 -0
  181. data/samples/regional/notifiers/create-201.json +55 -0
  182. data/samples/regional/notifiers/create-404.json +30 -0
  183. data/samples/regional/notifiers/create-422.json +36 -0
  184. data/samples/regional/notifiers/destroy-204.json +19 -0
  185. data/samples/regional/notifiers/destroy-404.json +24 -0
  186. data/samples/regional/notifiers/find-200.json +47 -0
  187. data/samples/regional/notifiers/find-404.json +24 -0
  188. data/samples/regional/notifiers/for-200.json +49 -0
  189. data/samples/regional/notifiers/platforms-guest.json +184 -0
  190. data/samples/regional/notifiers/platforms-logged.json +185 -0
  191. data/samples/regional/notifiers/test-200.json +22 -0
  192. data/samples/regional/notifiers/test-404.json +25 -0
  193. data/samples/regional/notifiers/update-200.json +53 -0
  194. data/samples/regional/operations/_meta.json +5 -0
  195. data/samples/regional/operations/find-200.json +31 -0
  196. data/samples/regional/operations/find-404.json +24 -0
  197. data/samples/regional/scm_repo_links/_meta.json +22 -0
  198. data/samples/regional/scm_repo_links/create-201.json +54 -0
  199. data/samples/regional/scm_repo_links/destroy-204.json +15 -0
  200. data/samples/regional/scm_repo_links/manual-deploy-200.json +32 -0
  201. data/samples/regional/scm_repo_links/show-200.json +43 -0
  202. data/samples/regional/scm_repo_links/update-200.json +50 -0
  203. data/scalingo.gemspec +51 -0
  204. data/spec/scalingo/auth/keys_spec.rb +58 -0
  205. data/spec/scalingo/auth/scm_integrations_spec.rb +58 -0
  206. data/spec/scalingo/auth/tokens_spec.rb +74 -0
  207. data/spec/scalingo/auth/two_factor_auth_spec.rb +69 -0
  208. data/spec/scalingo/auth/user_spec.rb +25 -0
  209. data/spec/scalingo/regional/addons_spec.rb +133 -0
  210. data/spec/scalingo/regional/apps_spec.rb +137 -0
  211. data/spec/scalingo/regional/collaborators_spec.rb +69 -0
  212. data/spec/scalingo/regional/containers_spec.rb +67 -0
  213. data/spec/scalingo/regional/deployments_spec.rb +45 -0
  214. data/spec/scalingo/regional/domains_spec.rb +84 -0
  215. data/spec/scalingo/regional/environment_spec.rb +77 -0
  216. data/spec/scalingo/regional/events_spec.rb +65 -0
  217. data/spec/scalingo/regional/logs_spec.rb +39 -0
  218. data/spec/scalingo/regional/metrics_spec.rb +46 -0
  219. data/spec/scalingo/regional/notifiers_spec.rb +113 -0
  220. data/spec/scalingo/regional/operations_spec.rb +19 -0
  221. data/spec/scalingo/regional/scm_repo_links_spec.rb +48 -0
  222. metadata +488 -0
@@ -0,0 +1,705 @@
1
+ {
2
+ "path": "/addon_providers",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 200,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 13:08:57 GMT",
13
+ "Etag": "W/\"f294c250e74be39cf7d31ac16591f442\"",
14
+ "Content-Type": "application/json; charset=utf-8",
15
+ "Transfer-Encoding": "chunked",
16
+ "Connection": "keep-alive",
17
+ "Cache-Control": "max-age=0, private, must-revalidate",
18
+ "Referrer-Policy": "strict-origin-when-cross-origin"
19
+ },
20
+ "json_body": {
21
+ "addon_providers": [
22
+ {
23
+ "name": "Dummy Log Addon",
24
+ "logo_url": "//storage.sbg1.cloud.ovh.net/v1/AUTH_be65d32d71a6435589a419eac98613f2/scalingo/scalingo-avatar.png",
25
+ "id": "dummy-log-addon",
26
+ "short_description": "Completely Dummy Log Output",
27
+ "description": "Completely Dummy log addon for testing purposes",
28
+ "category": {
29
+ "id": "586a6ae13e6b3b0011288ac4",
30
+ "name": "Default",
31
+ "position": 2
32
+ },
33
+ "provider_name": "",
34
+ "provider_url": "",
35
+ "plans": [
36
+ {
37
+ "id": "55e0519661646d0001010000",
38
+ "name": "plan1",
39
+ "display_name": "First plan",
40
+ "price": 0.0,
41
+ "description": "<p>Test Plan</p>\n",
42
+ "position": 0,
43
+ "on_demand": null,
44
+ "disabled": null,
45
+ "disabled_alternative_plan_id": null,
46
+ "sku": "ovh-st-fr1-plan1"
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ "name": "PostgreSQL",
52
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_Postgresql.svg",
53
+ "id": "postgresql",
54
+ "short_description": "",
55
+ "description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you PostgreSQL as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate PostgreSQL databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal PostgreSQL Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated PostgreSQL processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
56
+ "category": {
57
+ "id": "54c6819f61646d0001000000",
58
+ "name": "Databases",
59
+ "position": 1
60
+ },
61
+ "provider_name": "",
62
+ "provider_url": "",
63
+ "plans": [
64
+ {
65
+ "id": "5d1e03873e6b3b000eefa827",
66
+ "name": "postgresql-sandbox",
67
+ "display_name": "Sandbox",
68
+ "price": 0.0,
69
+ "description": "<p>Pouet</p>\n",
70
+ "position": null,
71
+ "on_demand": false,
72
+ "disabled": false,
73
+ "disabled_alternative_plan_id": null,
74
+ "sku": "ovh-st-fr1-postgresql-sandbox"
75
+ },
76
+ {
77
+ "id": "5d1e03af3e6b3b000eefa82a",
78
+ "name": "postgresql-starter-512",
79
+ "display_name": "Starter 512M",
80
+ "price": 0.0,
81
+ "description": "<p>Biniou</p>\n",
82
+ "position": null,
83
+ "on_demand": false,
84
+ "disabled": false,
85
+ "disabled_alternative_plan_id": null,
86
+ "sku": "ovh-st-fr1-postgresql-starter-512"
87
+ },
88
+ {
89
+ "id": "5d1e03d93e6b3b000eefa82e",
90
+ "name": "postgresql-starter-1024",
91
+ "display_name": "Starter 1G",
92
+ "price": 0.0,
93
+ "description": "<p>Biniou</p>\n",
94
+ "position": null,
95
+ "on_demand": false,
96
+ "disabled": false,
97
+ "disabled_alternative_plan_id": null,
98
+ "sku": "ovh-st-fr1-postgresql-starter-1024"
99
+ },
100
+ {
101
+ "id": "5d1e04033e6b3b000eefa831",
102
+ "name": "postgresql-business-512",
103
+ "display_name": "Business 512M",
104
+ "price": 0.0,
105
+ "description": "<p>Cluster!</p>\n",
106
+ "position": null,
107
+ "on_demand": false,
108
+ "disabled": false,
109
+ "disabled_alternative_plan_id": null,
110
+ "sku": "ovh-st-fr1-postgresql-business-512"
111
+ },
112
+ {
113
+ "id": "5d1e04203e6b3b000eefa834",
114
+ "name": "postgresql-business-1024",
115
+ "display_name": "Business 1G",
116
+ "price": 0.0,
117
+ "description": "<p>Cluster!</p>\n",
118
+ "position": null,
119
+ "on_demand": false,
120
+ "disabled": false,
121
+ "disabled_alternative_plan_id": null,
122
+ "sku": "ovh-st-fr1-postgresql-business-1024"
123
+ },
124
+ {
125
+ "id": "5d6011183e6b3b000f01a4f5",
126
+ "name": "postgresql-starter-2048",
127
+ "display_name": "Starter 2G",
128
+ "price": 0.0,
129
+ "description": "<p>Pipo</p>\n",
130
+ "position": null,
131
+ "on_demand": false,
132
+ "disabled": false,
133
+ "disabled_alternative_plan_id": null,
134
+ "sku": "ovh-st-fr1-postgresql-starter-2048"
135
+ }
136
+ ]
137
+ },
138
+ {
139
+ "name": "Dummy Addon",
140
+ "logo_url": "//storage.sbg1.cloud.ovh.net/v1/AUTH_be65d32d71a6435589a419eac98613f2/scalingo/scalingo-avatar.png",
141
+ "id": "dummy-addon",
142
+ "short_description": "Completely Dummy",
143
+ "description": "Completely Dummy addon for testing purposes",
144
+ "category": {
145
+ "id": "586a6ae13e6b3b0011288ac4",
146
+ "name": "Default",
147
+ "position": 2
148
+ },
149
+ "provider_name": "",
150
+ "provider_url": "",
151
+ "plans": [
152
+ {
153
+ "id": "55489f5061646d0001010000",
154
+ "name": "plan1",
155
+ "display_name": "First plan",
156
+ "price": 0.0,
157
+ "description": "<p>First plan, do nothing</p>\n",
158
+ "position": 0,
159
+ "on_demand": null,
160
+ "disabled": null,
161
+ "disabled_alternative_plan_id": null,
162
+ "sku": "ovh-st-fr1-plan1"
163
+ },
164
+ {
165
+ "id": "55489f5e61646d0001020000",
166
+ "name": "plan2",
167
+ "display_name": "Second plan",
168
+ "price": 0.0,
169
+ "description": "<p>Do nothing twice</p>\n",
170
+ "position": 2,
171
+ "on_demand": null,
172
+ "disabled": null,
173
+ "disabled_alternative_plan_id": null,
174
+ "sku": "ovh-st-fr1-plan2"
175
+ },
176
+ {
177
+ "id": "5821de7e3e6b3b00149051ad",
178
+ "name": "crashing-plan",
179
+ "display_name": "Crashing Plan",
180
+ "price": 0.0,
181
+ "description": "<p>Third</p>\n",
182
+ "position": 3,
183
+ "on_demand": null,
184
+ "disabled": false,
185
+ "disabled_alternative_plan_id": null,
186
+ "sku": "ovh-st-fr1-crashing-plan"
187
+ }
188
+ ]
189
+ },
190
+ {
191
+ "name": "VPN Addon",
192
+ "logo_url": "//appcenter.software-univention.de/meta-inf/4.2/openvpn4ucs/openvpn4ucs_detail_logo.svg",
193
+ "id": "vpn-addon",
194
+ "short_description": "",
195
+ "description": "",
196
+ "category": {
197
+ "id": "586a6ae13e6b3b0011288ac4",
198
+ "name": "Default",
199
+ "position": 2
200
+ },
201
+ "provider_name": "",
202
+ "provider_url": "",
203
+ "plans": [
204
+ {
205
+ "id": "5a1563f73e6b3b00122bb419",
206
+ "name": "vpn-openvpn-standard",
207
+ "display_name": "OpenVPN",
208
+ "price": 0.0,
209
+ "description": "<p>OpenVPN</p>\n",
210
+ "position": 1,
211
+ "on_demand": null,
212
+ "disabled": false,
213
+ "disabled_alternative_plan_id": null,
214
+ "sku": "ovh-st-fr1-vpn-openvpn-standard"
215
+ },
216
+ {
217
+ "id": "5a1564083e6b3b00122bb41b",
218
+ "name": "vpn-ipsec-standard",
219
+ "display_name": "IPSec VPN",
220
+ "price": 0.0,
221
+ "description": "<p>VPN IPSec</p>\n",
222
+ "position": 1,
223
+ "on_demand": null,
224
+ "disabled": false,
225
+ "disabled_alternative_plan_id": null,
226
+ "sku": "ovh-st-fr1-vpn-ipsec-standard"
227
+ }
228
+ ]
229
+ },
230
+ {
231
+ "name": "Scalingo Docker Image",
232
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_DockerImage_20162106105400.png",
233
+ "id": "scalingo-docker-image",
234
+ "short_description": "Get the docker images of the applications you've deployed on the platform",
235
+ "description": "Get the docker images of the applications you've deployed on the platform",
236
+ "category": {
237
+ "id": "54c6819f61646d0001000000",
238
+ "name": "Databases",
239
+ "position": 1
240
+ },
241
+ "provider_name": "Scalingo",
242
+ "provider_url": "https://scalingo.com",
243
+ "plans": [
244
+ {
245
+ "id": "575a71ba61646d000c010000",
246
+ "name": "base-plan",
247
+ "display_name": "Base Plan",
248
+ "price": 0.0,
249
+ "description": "<p>Descriptions</p>\n",
250
+ "position": 0,
251
+ "on_demand": null,
252
+ "disabled": false,
253
+ "disabled_alternative_plan_id": null,
254
+ "sku": "ovh-st-fr1-base-plan"
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "name": "MySQL",
260
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_MySQL.svg",
261
+ "id": "mysql",
262
+ "short_description": "",
263
+ "description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you MySQL as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate MySQL databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal MySQL Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated MySQL processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
264
+ "category": {
265
+ "id": "54c6819f61646d0001000000",
266
+ "name": "Databases",
267
+ "position": 1
268
+ },
269
+ "provider_name": "",
270
+ "provider_url": "",
271
+ "plans": [
272
+ {
273
+ "id": "5e9589d43e6b3b000f1f57d3",
274
+ "name": "mysql-sandbox",
275
+ "display_name": "Sandbox",
276
+ "price": 0.0,
277
+ "description": "<ul>\n<li>Single Node</li>\n<li>No backups (you can do it yourself)</li>\n<li>192MB RAM</li>\n<li>Includes 192MB disk space (hard limit)</li>\n<li>Max connections: 13</li>\n<li>Community Support</li>\n</ul>\n",
278
+ "position": 0,
279
+ "on_demand": false,
280
+ "disabled": false,
281
+ "disabled_alternative_plan_id": null,
282
+ "sku": "ovh-st-fr1-mysql-sandbox"
283
+ },
284
+ {
285
+ "id": "5e31afc23e6b3b000f708ce5",
286
+ "name": "mysql-starter-256",
287
+ "display_name": "Starter 256M",
288
+ "price": 3.6,
289
+ "description": "<ul>\n<li>Daily backup</li>\n<li>256MB RAM</li>\n<li>Includes 2.5GB disk space</li>\n<li>Single Node</li>\n<li>Max connections: 18</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
290
+ "position": 1,
291
+ "on_demand": false,
292
+ "disabled": false,
293
+ "disabled_alternative_plan_id": null,
294
+ "sku": "ovh-st-fr1-mysql-starter-256"
295
+ },
296
+ {
297
+ "id": "5e95b8d93e6b3b000f1f57d7",
298
+ "name": "mysql-starter-512",
299
+ "display_name": "Starter 512M",
300
+ "price": 7.2,
301
+ "description": "<ul>\n<li>Daily backup</li>\n<li>512MB RAM</li>\n<li>Includes 5GB disk space</li>\n<li>Single Node</li>\n<li>Max connections: 30</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
302
+ "position": 2,
303
+ "on_demand": false,
304
+ "disabled": false,
305
+ "disabled_alternative_plan_id": null,
306
+ "sku": "ovh-st-fr1-mysql-starter-512"
307
+ },
308
+ {
309
+ "id": "531c9b09646173000a030000",
310
+ "name": "1g",
311
+ "display_name": " 1G Database",
312
+ "price": 14.4,
313
+ "description": "<p>Daily backups<br>\n1GB RAM<br>\nIncludes 10GB disk space<br>\nMax connections: 62<br>\nMultiple Users<br>\nEmail Support<br>\nPrice for over plan disk space: 2€/GB<br>\nPrice displayed is computed for a total of 30 days</p>\n",
314
+ "position": 3,
315
+ "on_demand": false,
316
+ "disabled": false,
317
+ "disabled_alternative_plan_id": null,
318
+ "sku": "ovh-st-fr1-1g"
319
+ },
320
+ {
321
+ "id": "5e95ba9f3e6b3b000f1f57df",
322
+ "name": "mysql-business-512",
323
+ "display_name": "Business 512M",
324
+ "price": 20.0,
325
+ "description": "<ul>\n<li>Daily backups, Retention over 1 year</li>\n<li>High Available setup</li>\n<li>3 Nodes cluster</li>\n<li>512MB RAM per node</li>\n<li>Includes 5GB disk space per node</li>\n<li>Max connections: 30</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
326
+ "position": 4,
327
+ "on_demand": false,
328
+ "disabled": false,
329
+ "disabled_alternative_plan_id": null,
330
+ "sku": "ovh-st-fr1-mysql-business-512"
331
+ },
332
+ {
333
+ "id": "5e95bad83e6b3b000f1f57e2",
334
+ "name": "mysql-business-1024",
335
+ "display_name": "Business 1G",
336
+ "price": 40.0,
337
+ "description": "<ul>\n<li>Daily backups, Retention over 1 year</li>\n<li>High Available setup</li>\n<li>3 Nodes cluster</li>\n<li>1GiB RAM per node</li>\n<li>Includes 5GB disk space per node</li>\n<li>Max connections: 30</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
338
+ "position": 5,
339
+ "on_demand": false,
340
+ "disabled": false,
341
+ "disabled_alternative_plan_id": null,
342
+ "sku": "ovh-st-fr1-mysql-business-1024"
343
+ }
344
+ ]
345
+ },
346
+ {
347
+ "name": "TCP Load Balancer",
348
+ "logo_url": "http://1zkq0n152z6rnp4v81tnk1zh-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/IOTlogopng503x503.png",
349
+ "id": "tcp-load-balancer",
350
+ "short_description": "Un addon TCP tmtc",
351
+ "description": "THE ADDON TMTC tmtc ",
352
+ "category": {
353
+ "id": "586a6ae13e6b3b0011288ac4",
354
+ "name": "Default",
355
+ "position": 2
356
+ },
357
+ "provider_name": "Scalingo",
358
+ "provider_url": "https://scalingo.com",
359
+ "plans": [
360
+ {
361
+ "id": "59de15cf3e6b3b001214ea90",
362
+ "name": "sandbox",
363
+ "display_name": "Sandbox",
364
+ "price": 0.0,
365
+ "description": "<p>200 pps<br>\n2000 Packet burst</p>\n",
366
+ "position": 1,
367
+ "on_demand": null,
368
+ "disabled": false,
369
+ "disabled_alternative_plan_id": null,
370
+ "sku": "ovh-st-fr1-sandbox"
371
+ },
372
+ {
373
+ "id": "59f8750e3e6b3b0010859de9",
374
+ "name": "1k",
375
+ "display_name": "1k pps",
376
+ "price": 10.0,
377
+ "description": "<p>1 000 pps<br>\n10 000 packets burst</p>\n",
378
+ "position": 2,
379
+ "on_demand": null,
380
+ "disabled": false,
381
+ "disabled_alternative_plan_id": null,
382
+ "sku": "ovh-st-fr1-1k"
383
+ },
384
+ {
385
+ "id": "59f875343e6b3b0010859deb",
386
+ "name": "10k",
387
+ "display_name": "10k pps",
388
+ "price": 1000.0,
389
+ "description": "<p>10 000 pps<br>\n100 000 packets burst</p>\n",
390
+ "position": 3,
391
+ "on_demand": null,
392
+ "disabled": false,
393
+ "disabled_alternative_plan_id": null,
394
+ "sku": "ovh-st-fr1-10k"
395
+ }
396
+ ]
397
+ },
398
+ {
399
+ "name": "MongoDB",
400
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_MongoDB_20151203113100.svg",
401
+ "id": "mongodb",
402
+ "short_description": "",
403
+ "description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you MongoDB as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate MongoDB databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal MongoDB Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated MongoDB processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Oplog for single node instances\r\n\r\nAccessing the **oplog** is just a click away on our web dashboard!\r\nEnjoy real time features in the applications which require it.\r\nMeteor JS developers, that's for you!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
404
+ "category": {
405
+ "id": "54c6819f61646d0001000000",
406
+ "name": "Databases",
407
+ "position": 1
408
+ },
409
+ "provider_name": "",
410
+ "provider_url": "",
411
+ "plans": [
412
+ {
413
+ "id": "5995bf383e6b3b001390a9d2",
414
+ "name": "mongo-sandbox",
415
+ "display_name": "Sandbox",
416
+ "price": 0.0,
417
+ "description": "<ul>\n<li>Single Node</li>\n<li>No backups (you can do it yourself)</li>\n<li>128MB RAM</li>\n<li>Includes 128MB disk space (hard limit)</li>\n<li>Community Support</li>\n</ul>\n",
418
+ "position": 0,
419
+ "on_demand": null,
420
+ "disabled": false,
421
+ "disabled_alternative_plan_id": null,
422
+ "sku": "ovh-st-fr1-mongo-sandbox"
423
+ },
424
+ {
425
+ "id": "59b2a9cc3e6b3b00124da641",
426
+ "name": "mongo-starter-256",
427
+ "display_name": "Starter 256M",
428
+ "price": 7.2,
429
+ "description": "<p>Mongo Starter 256</p>\n",
430
+ "position": 2,
431
+ "on_demand": null,
432
+ "disabled": false,
433
+ "disabled_alternative_plan_id": null,
434
+ "sku": "ovh-st-fr1-mongo-starter-256"
435
+ },
436
+ {
437
+ "id": "5bed7e6fc44b4700116a530d",
438
+ "name": "mongo-starter-1024",
439
+ "display_name": "Starter 1G",
440
+ "price": 14.4,
441
+ "description": "<p>1G</p>\n",
442
+ "position": 4,
443
+ "on_demand": null,
444
+ "disabled": false,
445
+ "disabled_alternative_plan_id": null,
446
+ "sku": "ovh-st-fr1-mongo-starter-1024"
447
+ },
448
+ {
449
+ "id": "596e5ded3e6b3b001282f88d",
450
+ "name": "mongo-business-512",
451
+ "display_name": "Business 512MB",
452
+ "price": 10.0,
453
+ "description": "<ul>\n<li>Replicaset</li>\n<li>1 daily backup</li>\n<li>512MB RAM per instance</li>\n<li>includes 5GB disk space per node (soft limit)</li>\n<li>4 nodes (2 data, 1 arbiter, 1 backup)</li>\n<li>SSL Connection available</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
454
+ "position": 5,
455
+ "on_demand": null,
456
+ "disabled": false,
457
+ "disabled_alternative_plan_id": null,
458
+ "sku": "ovh-st-fr1-mongo-business-512"
459
+ },
460
+ {
461
+ "id": "59b7d8a43e6b3b00124da648",
462
+ "name": "mongo-business-1024",
463
+ "display_name": "Business 1G",
464
+ "price": 20.0,
465
+ "description": "<ul>\n<li>Replicaset</li>\n<li>1 daily backup</li>\n<li>1GB RAM per instance</li>\n<li>includes 10GB disk space per node (soft limit)</li>\n<li>4 nodes (2 data, 1 arbiter, 1 backup)</li>\n<li>SSL Connection available</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
466
+ "position": 6,
467
+ "on_demand": null,
468
+ "disabled": false,
469
+ "disabled_alternative_plan_id": null,
470
+ "sku": "ovh-st-fr1-mongo-business-1024"
471
+ }
472
+ ]
473
+ },
474
+ {
475
+ "name": "Elasticsearch",
476
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_Elasticsearch.svg",
477
+ "id": "elasticsearch",
478
+ "short_description": "",
479
+ "description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you Elasticsearch as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate Elasticsearch databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal Elasticsearch Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated Elasticsearch processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
480
+ "category": {
481
+ "id": "54c6819f61646d0001000000",
482
+ "name": "Databases",
483
+ "position": 1
484
+ },
485
+ "provider_name": "",
486
+ "provider_url": "",
487
+ "plans": [
488
+ {
489
+ "id": "5c1bbf5d3e6b3b0012974a97",
490
+ "name": "sandbox",
491
+ "display_name": "Sandbox",
492
+ "price": 0.0,
493
+ "description": "<p>sandbox plan: for hobbyits</p>\n",
494
+ "position": 1,
495
+ "on_demand": null,
496
+ "disabled": false,
497
+ "disabled_alternative_plan_id": null,
498
+ "sku": "ovh-st-fr1-sandbox"
499
+ },
500
+ {
501
+ "id": "5c1bbf733e6b3b0012974a98",
502
+ "name": "starter-1024",
503
+ "display_name": "Starter 1024",
504
+ "price": 10.0,
505
+ "description": "<p>Starter 1GB</p>\n",
506
+ "position": 2,
507
+ "on_demand": null,
508
+ "disabled": false,
509
+ "disabled_alternative_plan_id": null,
510
+ "sku": "ovh-st-fr1-starter-1024"
511
+ },
512
+ {
513
+ "id": "5c1bbf923e6b3b0012974a99",
514
+ "name": "starter-2048",
515
+ "display_name": "Starter 2048",
516
+ "price": 10.0,
517
+ "description": "<p>Starter 2GB</p>\n",
518
+ "position": 3,
519
+ "on_demand": null,
520
+ "disabled": false,
521
+ "disabled_alternative_plan_id": null,
522
+ "sku": "ovh-st-fr1-starter-2048"
523
+ },
524
+ {
525
+ "id": "5c1bbfa73e6b3b0012974a9a",
526
+ "name": "business-1024",
527
+ "display_name": "Business 1024",
528
+ "price": 100.0,
529
+ "description": "<p>Toto</p>\n",
530
+ "position": 5,
531
+ "on_demand": null,
532
+ "disabled": false,
533
+ "disabled_alternative_plan_id": null,
534
+ "sku": "ovh-st-fr1-business-1024"
535
+ },
536
+ {
537
+ "id": "5c1bbfbe3e6b3b0012974a9b",
538
+ "name": "business-2048",
539
+ "display_name": "Business 2048",
540
+ "price": 250.0,
541
+ "description": "<p>TotoMolo</p>\n",
542
+ "position": 6,
543
+ "on_demand": null,
544
+ "disabled": false,
545
+ "disabled_alternative_plan_id": null,
546
+ "sku": "ovh-st-fr1-business-2048"
547
+ },
548
+ {
549
+ "id": "5c34f89290da2a001233c454",
550
+ "name": "business-4096",
551
+ "display_name": "Business 4096M",
552
+ "price": 500.0,
553
+ "description": "<p>3 nodes 4G</p>\n",
554
+ "position": 10,
555
+ "on_demand": true,
556
+ "disabled": false,
557
+ "disabled_alternative_plan_id": null,
558
+ "sku": "ovh-st-fr1-business-4096"
559
+ }
560
+ ]
561
+ },
562
+ {
563
+ "name": "Redis",
564
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_Redis.svg",
565
+ "id": "redis",
566
+ "short_description": "",
567
+ "description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you Redis as a Service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate Redis instances on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
568
+ "category": {
569
+ "id": "54c6819f61646d0001000000",
570
+ "name": "Databases",
571
+ "position": 1
572
+ },
573
+ "provider_name": "",
574
+ "provider_url": "",
575
+ "plans": [
576
+ {
577
+ "id": "5cb093763e6b3b00117a36f0",
578
+ "name": "redis-sandbox",
579
+ "display_name": "Sandbox",
580
+ "price": 0.0,
581
+ "description": "<ul>\n<li>Single Node</li>\n<li>No backups (you can do it yourself)</li>\n<li>64MB RAM</li>\n<li>Includes 64 MB disk space (hard limit)</li>\n<li>Community Support</li>\n</ul>\n",
582
+ "position": 10,
583
+ "on_demand": false,
584
+ "disabled": false,
585
+ "disabled_alternative_plan_id": null,
586
+ "sku": "ovh-st-fr1-redis-sandbox"
587
+ },
588
+ {
589
+ "id": "5cb093983e6b3b00117a36f2",
590
+ "name": "redis-starter-256",
591
+ "display_name": "Starter 256M",
592
+ "price": 7.2,
593
+ "description": "<ul>\n<li>1 daily backup</li>\n<li>256MB RAM</li>\n<li>Includes 2.5GB disk space</li>\n<li>Single Node</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
594
+ "position": 20,
595
+ "on_demand": false,
596
+ "disabled": false,
597
+ "disabled_alternative_plan_id": null,
598
+ "sku": "ovh-st-fr1-redis-starter-256"
599
+ },
600
+ {
601
+ "id": "5cb093bc3e6b3b00117a36f4",
602
+ "name": "redis-starter-512",
603
+ "display_name": "Starter 512M",
604
+ "price": 14.4,
605
+ "description": "<ul>\n<li>1 daily backup</li>\n<li>512MB RAM</li>\n<li>Includes 5GB disk space</li>\n<li>Single Node</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
606
+ "position": 20,
607
+ "on_demand": false,
608
+ "disabled": false,
609
+ "disabled_alternative_plan_id": null,
610
+ "sku": "ovh-st-fr1-redis-starter-512"
611
+ },
612
+ {
613
+ "id": "5cb093dd3e6b3b00117a36f6",
614
+ "name": "redis-starter-1024",
615
+ "display_name": "Starter 1G",
616
+ "price": 28.8,
617
+ "description": "<ul>\n<li>1 daily backup</li>\n<li>1GB RAM</li>\n<li>Includes 10GB disk space</li>\n<li>Single Node</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
618
+ "position": 40,
619
+ "on_demand": false,
620
+ "disabled": false,
621
+ "disabled_alternative_plan_id": null,
622
+ "sku": "ovh-st-fr1-redis-starter-1024"
623
+ },
624
+ {
625
+ "id": "5cb093fd3e6b3b00117a36f8",
626
+ "name": "redis-business-256",
627
+ "display_name": "Business 256M",
628
+ "price": 14.4,
629
+ "description": "<ul>\n<li>Cluster</li>\n<li>High Availability</li>\n<li>1 daily backup</li>\n<li>256MB RAM per instance</li>\n<li>includes 2.5GB disk space per node (soft limit)</li>\n<li>2 nodes</li>\n<li>SSL/TLS Connection available</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
630
+ "position": 50,
631
+ "on_demand": false,
632
+ "disabled": false,
633
+ "disabled_alternative_plan_id": null,
634
+ "sku": "ovh-st-fr1-redis-business-256"
635
+ },
636
+ {
637
+ "id": "5cb0943a3e6b3b00117a36fa",
638
+ "name": "redis-business-512",
639
+ "display_name": "Business 512M",
640
+ "price": 28.8,
641
+ "description": "<ul>\n<li>Cluster</li>\n<li>High Availability</li>\n<li>1 daily backup</li>\n<li>512MB RAM per instance</li>\n<li>includes 5GB disk space per node (soft limit)</li>\n<li>2 nodes</li>\n<li>SSL/TLS Connection available</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
642
+ "position": 70,
643
+ "on_demand": false,
644
+ "disabled": false,
645
+ "disabled_alternative_plan_id": null,
646
+ "sku": "ovh-st-fr1-redis-business-512"
647
+ },
648
+ {
649
+ "id": "5cb094573e6b3b00117a36fc",
650
+ "name": "redis-business-1024",
651
+ "display_name": "Business 1G",
652
+ "price": 57.6,
653
+ "description": "<ul>\n<li>Cluster</li>\n<li>High Availability</li>\n<li>1 daily backup</li>\n<li>1GB RAM per instance</li>\n<li>includes 10GB disk space per node (soft limit)</li>\n<li>2 nodes</li>\n<li>SSL/TLS Connection available</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
654
+ "position": 90,
655
+ "on_demand": false,
656
+ "disabled": false,
657
+ "disabled_alternative_plan_id": null,
658
+ "sku": "ovh-st-fr1-redis-business-1024"
659
+ }
660
+ ]
661
+ },
662
+ {
663
+ "name": "InfluxDB",
664
+ "logo_url": "//cdn.scalingo.com/addons/Scalingo_Influx_20160624151600.svg",
665
+ "id": "influxdb",
666
+ "short_description": "",
667
+ "description": "",
668
+ "category": {
669
+ "id": "54c6819f61646d0001000000",
670
+ "name": "Databases",
671
+ "position": 1
672
+ },
673
+ "provider_name": "",
674
+ "provider_url": "",
675
+ "plans": [
676
+ {
677
+ "id": "576c1d5e61646d000b010000",
678
+ "name": "free",
679
+ "display_name": "Free Tier",
680
+ "price": 0.0,
681
+ "description": "<p>Free Tier</p>\n",
682
+ "position": 1,
683
+ "on_demand": null,
684
+ "disabled": false,
685
+ "disabled_alternative_plan_id": null,
686
+ "sku": "ovh-st-fr1-free"
687
+ },
688
+ {
689
+ "id": "59440c833e6b3b001103ffad",
690
+ "name": "4g",
691
+ "display_name": "4G Database",
692
+ "price": 0.0,
693
+ "description": "<p>4G RAM Database</p>\n",
694
+ "position": 1,
695
+ "on_demand": null,
696
+ "disabled": false,
697
+ "disabled_alternative_plan_id": null,
698
+ "sku": "ovh-st-fr1-4g"
699
+ }
700
+ ]
701
+ }
702
+ ]
703
+ }
704
+ }
705
+ }