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,25 @@
1
+ {
2
+ "app_id": "example-running-application",
3
+ "scale": {
4
+ "valid": [
5
+ {
6
+ "name": "web",
7
+ "amount": 3
8
+ }
9
+ ],
10
+ "invalid": [
11
+ {
12
+ "name": "web",
13
+ "amount": 11
14
+ }
15
+ ]
16
+ },
17
+ "restart": {
18
+ "valid": [
19
+ "web"
20
+ ],
21
+ "invalid": [
22
+ "wrong"
23
+ ]
24
+ }
25
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "path": "/apps/example-running-application/containers",
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:27:44 GMT",
13
+ "Etag": "W/\"ccdb0dfa95473494ced5b93f81e8bc0b\"",
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
+ "containers": [
22
+ {
23
+ "name": "web",
24
+ "command": "",
25
+ "amount": 1,
26
+ "size": "S",
27
+ "app_id": "5ed0fe5d884fef000f5e4fd1"
28
+ },
29
+ {
30
+ "name": "clock",
31
+ "command": "node cron.js",
32
+ "amount": 0,
33
+ "size": "M",
34
+ "app_id": "5ed0fe5d884fef000f5e4fd1"
35
+ }
36
+ ]
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "path": "/apps/example-running-application/restart",
3
+ "method": "post",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token",
7
+ "Content-Type": "application/json"
8
+ },
9
+ "json_body": {
10
+ "scope": [
11
+ "web"
12
+ ]
13
+ }
14
+ },
15
+ "response": {
16
+ "status": 202,
17
+ "headers": {
18
+ "Date": "Fri, 29 May 2020 13:27:56 GMT",
19
+ "Content-Type": "text/plain; charset=utf-8",
20
+ "Transfer-Encoding": "chunked",
21
+ "Connection": "keep-alive",
22
+ "Cache-Control": "no-cache",
23
+ "Referrer-Policy": "strict-origin-when-cross-origin",
24
+ "Location": "https://api.st-sc.fr/v1/apps/example-running-application/operations/5ed10ddcf112e2000f9f93e4"
25
+ },
26
+ "body": ""
27
+ }
28
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "path": "/apps/example-running-application/restart",
3
+ "method": "post",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token",
7
+ "Content-Type": "application/json"
8
+ },
9
+ "json_body": {
10
+ "scope": [
11
+ "wrong"
12
+ ]
13
+ }
14
+ },
15
+ "response": {
16
+ "status": 422,
17
+ "headers": {
18
+ "Date": "Fri, 29 May 2020 13:27:55 GMT",
19
+ "Content-Type": "application/json; charset=utf-8",
20
+ "Transfer-Encoding": "chunked",
21
+ "Connection": "keep-alive",
22
+ "Cache-Control": "no-cache",
23
+ "Referrer-Policy": "strict-origin-when-cross-origin"
24
+ },
25
+ "json_body": {
26
+ "errors": {
27
+ "scope": [
28
+ "'wrong' → no such process type"
29
+ ]
30
+ }
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,48 @@
1
+ {
2
+ "path": "/apps/example-running-application/scale",
3
+ "method": "post",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token",
7
+ "Content-Type": "application/json"
8
+ },
9
+ "json_body": {
10
+ "containers": [
11
+ {
12
+ "name": "web",
13
+ "amount": 3
14
+ }
15
+ ]
16
+ }
17
+ },
18
+ "response": {
19
+ "status": 202,
20
+ "headers": {
21
+ "Date": "Fri, 29 May 2020 13:27:45 GMT",
22
+ "Content-Type": "application/json; charset=utf-8",
23
+ "Transfer-Encoding": "chunked",
24
+ "Connection": "keep-alive",
25
+ "Cache-Control": "no-cache",
26
+ "Referrer-Policy": "strict-origin-when-cross-origin",
27
+ "Location": "https://api.st-sc.fr/v1/apps/example-running-application/operations/5ed10dd1f112e2000f9f93e1"
28
+ },
29
+ "json_body": {
30
+ "containers": [
31
+ {
32
+ "name": "web",
33
+ "command": "",
34
+ "amount": 3,
35
+ "size": "S",
36
+ "app_id": "5ed0fe5d884fef000f5e4fd1"
37
+ },
38
+ {
39
+ "name": "clock",
40
+ "command": "node cron.js",
41
+ "amount": 0,
42
+ "size": "M",
43
+ "app_id": "5ed0fe5d884fef000f5e4fd1"
44
+ }
45
+ ]
46
+ }
47
+ }
48
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "path": "/apps/example-running-application/scale",
3
+ "method": "post",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token",
7
+ "Content-Type": "application/json"
8
+ },
9
+ "json_body": {
10
+ "containers": [
11
+ {
12
+ "name": "web",
13
+ "amount": 11
14
+ }
15
+ ]
16
+ }
17
+ },
18
+ "response": {
19
+ "status": 422,
20
+ "headers": {
21
+ "Date": "Fri, 29 May 2020 13:27:44 GMT",
22
+ "Content-Type": "application/json; charset=utf-8",
23
+ "Transfer-Encoding": "chunked",
24
+ "Connection": "keep-alive",
25
+ "Cache-Control": "no-cache",
26
+ "Referrer-Policy": "strict-origin-when-cross-origin"
27
+ },
28
+ "json_body": {
29
+ "errors": {
30
+ "container-web-amount": [
31
+ "can't scale over 10 containers, contact us at support@scalingo.com if you need more"
32
+ ]
33
+ }
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,115 @@
1
+ {
2
+ "path": "/features/container_sizes",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ }
7
+ },
8
+ "response": {
9
+ "status": 200,
10
+ "headers": {
11
+ "Date": "Fri, 29 May 2020 13:27:44 GMT",
12
+ "Etag": "W/\"30e33a7afe7a41cc528bfeaeb2af8750\"",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "max-age=0, private, must-revalidate",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "container_sizes": [
21
+ {
22
+ "id": "2f6fb9e0-a23e-4c7b-b06d-3a00c3ec9d4f",
23
+ "human_cpu": "low CPU priority",
24
+ "name": "S",
25
+ "human_name": "S",
26
+ "memory": 268435456,
27
+ "ordinal": 2,
28
+ "hourly_price": 10,
29
+ "thirtydays_price": 720,
30
+ "pids_limit": 128,
31
+ "swap": null,
32
+ "sku": "ovh-st-fr1-app-s"
33
+ },
34
+ {
35
+ "id": "c8d9eec1-c1fb-4349-8f74-0eee76c1d6dd",
36
+ "human_cpu": "standard CPU priority",
37
+ "name": "M",
38
+ "human_name": "M",
39
+ "memory": 536870912,
40
+ "ordinal": 3,
41
+ "hourly_price": 20,
42
+ "thirtydays_price": 1440,
43
+ "pids_limit": 256,
44
+ "swap": null,
45
+ "sku": "ovh-st-fr1-app-m"
46
+ },
47
+ {
48
+ "id": "8cd5b2c4-952a-41bc-98bb-2e6f23c9cc2f",
49
+ "human_cpu": "standard CPU priority",
50
+ "name": "L",
51
+ "human_name": "L",
52
+ "memory": 1073741824,
53
+ "ordinal": 4,
54
+ "hourly_price": 40,
55
+ "thirtydays_price": 2880,
56
+ "pids_limit": 512,
57
+ "swap": null,
58
+ "sku": "ovh-st-fr1-app-l"
59
+ },
60
+ {
61
+ "id": "528077c6-cea1-4240-85b0-b87108c3b7ca",
62
+ "human_cpu": "high CPU priority",
63
+ "name": "XL",
64
+ "human_name": "XL",
65
+ "memory": 2147483648,
66
+ "ordinal": 5,
67
+ "hourly_price": 80,
68
+ "thirtydays_price": 5760,
69
+ "pids_limit": 1024,
70
+ "swap": null,
71
+ "sku": "ovh-st-fr1-app-xl"
72
+ },
73
+ {
74
+ "id": "85b8676f-f9d3-4a6e-91a3-4132211325d0",
75
+ "human_cpu": "high CPU priority",
76
+ "name": "2XL",
77
+ "human_name": "2XL",
78
+ "memory": 4294967296,
79
+ "ordinal": 6,
80
+ "hourly_price": 160,
81
+ "thirtydays_price": 11520,
82
+ "pids_limit": 2048,
83
+ "swap": null,
84
+ "sku": "ovh-st-fr1-app-2xl"
85
+ },
86
+ {
87
+ "id": "47cc2149-a965-47d8-a4e1-55cb33a18bda",
88
+ "human_cpu": "very high CPU priority",
89
+ "name": "3XL",
90
+ "human_name": "3XL",
91
+ "memory": 8589934592,
92
+ "ordinal": 7,
93
+ "hourly_price": 320,
94
+ "thirtydays_price": 23040,
95
+ "pids_limit": 4096,
96
+ "swap": null,
97
+ "sku": "ovh-st-fr1-app-3xl"
98
+ },
99
+ {
100
+ "id": "526f629a-f532-45a9-a16e-66d65ec20411",
101
+ "human_cpu": "very high CPU priority",
102
+ "name": "4XL",
103
+ "human_name": "4XL",
104
+ "memory": 17179869184,
105
+ "ordinal": 8,
106
+ "hourly_price": 480,
107
+ "thirtydays_price": 46080,
108
+ "pids_limit": 8182,
109
+ "swap": null,
110
+ "sku": "ovh-st-fr1-app-4xl"
111
+ }
112
+ ]
113
+ }
114
+ }
115
+ }
@@ -0,0 +1,116 @@
1
+ {
2
+ "path": "/features/container_sizes",
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:27:44 GMT",
13
+ "Etag": "W/\"30e33a7afe7a41cc528bfeaeb2af8750\"",
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
+ "container_sizes": [
22
+ {
23
+ "id": "2f6fb9e0-a23e-4c7b-b06d-3a00c3ec9d4f",
24
+ "human_cpu": "low CPU priority",
25
+ "name": "S",
26
+ "human_name": "S",
27
+ "memory": 268435456,
28
+ "ordinal": 2,
29
+ "hourly_price": 10,
30
+ "thirtydays_price": 720,
31
+ "pids_limit": 128,
32
+ "swap": null,
33
+ "sku": "ovh-st-fr1-app-s"
34
+ },
35
+ {
36
+ "id": "c8d9eec1-c1fb-4349-8f74-0eee76c1d6dd",
37
+ "human_cpu": "standard CPU priority",
38
+ "name": "M",
39
+ "human_name": "M",
40
+ "memory": 536870912,
41
+ "ordinal": 3,
42
+ "hourly_price": 20,
43
+ "thirtydays_price": 1440,
44
+ "pids_limit": 256,
45
+ "swap": null,
46
+ "sku": "ovh-st-fr1-app-m"
47
+ },
48
+ {
49
+ "id": "8cd5b2c4-952a-41bc-98bb-2e6f23c9cc2f",
50
+ "human_cpu": "standard CPU priority",
51
+ "name": "L",
52
+ "human_name": "L",
53
+ "memory": 1073741824,
54
+ "ordinal": 4,
55
+ "hourly_price": 40,
56
+ "thirtydays_price": 2880,
57
+ "pids_limit": 512,
58
+ "swap": null,
59
+ "sku": "ovh-st-fr1-app-l"
60
+ },
61
+ {
62
+ "id": "528077c6-cea1-4240-85b0-b87108c3b7ca",
63
+ "human_cpu": "high CPU priority",
64
+ "name": "XL",
65
+ "human_name": "XL",
66
+ "memory": 2147483648,
67
+ "ordinal": 5,
68
+ "hourly_price": 80,
69
+ "thirtydays_price": 5760,
70
+ "pids_limit": 1024,
71
+ "swap": null,
72
+ "sku": "ovh-st-fr1-app-xl"
73
+ },
74
+ {
75
+ "id": "85b8676f-f9d3-4a6e-91a3-4132211325d0",
76
+ "human_cpu": "high CPU priority",
77
+ "name": "2XL",
78
+ "human_name": "2XL",
79
+ "memory": 4294967296,
80
+ "ordinal": 6,
81
+ "hourly_price": 160,
82
+ "thirtydays_price": 11520,
83
+ "pids_limit": 2048,
84
+ "swap": null,
85
+ "sku": "ovh-st-fr1-app-2xl"
86
+ },
87
+ {
88
+ "id": "47cc2149-a965-47d8-a4e1-55cb33a18bda",
89
+ "human_cpu": "very high CPU priority",
90
+ "name": "3XL",
91
+ "human_name": "3XL",
92
+ "memory": 8589934592,
93
+ "ordinal": 7,
94
+ "hourly_price": 320,
95
+ "thirtydays_price": 23040,
96
+ "pids_limit": 4096,
97
+ "swap": null,
98
+ "sku": "ovh-st-fr1-app-3xl"
99
+ },
100
+ {
101
+ "id": "526f629a-f532-45a9-a16e-66d65ec20411",
102
+ "human_cpu": "very high CPU priority",
103
+ "name": "4XL",
104
+ "human_name": "4XL",
105
+ "memory": 17179869184,
106
+ "ordinal": 8,
107
+ "hourly_price": 480,
108
+ "thirtydays_price": 46080,
109
+ "pids_limit": 8182,
110
+ "swap": null,
111
+ "sku": "ovh-st-fr1-app-4xl"
112
+ }
113
+ ]
114
+ }
115
+ }
116
+ }