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,8 @@
1
+ {
2
+ "app_id": "example-running-application",
3
+ "id": "cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
4
+ "not_found_id": "not-found",
5
+ "for": {
6
+ "page": 3
7
+ }
8
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "path": "/apps/example-running-application/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
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:16 GMT",
13
+ "Etag": "W/\"7f48c31c26b53046f991eb782ff2f0d9\"",
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
+ "deployment": {
22
+ "id": "cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
23
+ "app_id": "5ed0fe5d884fef000f5e4fd1",
24
+ "created_at": "2020-05-29T12:21:51.275Z",
25
+ "finished_at": "2020-05-29T12:23:25.688+00:00",
26
+ "status": "success",
27
+ "git_ref": "a5dca8ec8f48630c07c56fd8370e4f5535fe0fd8",
28
+ "previous_git_ref": null,
29
+ "type": "oneclick",
30
+ "image": "registry-1-staging.scalingo.com/app-example-running-app:a5dca8ec8f48630-cabf82f2-1cb1-4",
31
+ "registry": "registry-1-staging.scalingo.com",
32
+ "postdeploy_hook": null,
33
+ "duration": 92,
34
+ "pusher": {
35
+ "username": "example-username",
36
+ "email": "example@null.scalingo.com",
37
+ "id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
38
+ },
39
+ "links": {
40
+ "output": "https://api-staging.scalingo.com/v1/apps/5ed0fe5d884fef000f5e4fd1/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18/output"
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "path": "/apps/example-running-application/deployments/not-found",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 404,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 13:27:16 GMT",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "no-cache",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "resource": "deployment",
21
+ "error": "not found"
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "path": "/apps/example-running-application/deployments?page=3",
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:16 GMT",
13
+ "Etag": "W/\"914b185f7f1b599c84d1d578b2b39153\"",
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
+ "deployments": [
22
+
23
+ ],
24
+ "meta": {
25
+ "pagination": {
26
+ "current_page": 3,
27
+ "next_page": null,
28
+ "previous_page": 2,
29
+ "total_pages": 1,
30
+ "total_count": 1
31
+ }
32
+ }
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "path": "/apps/example-running-application/deployments",
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:16 GMT",
13
+ "Etag": "W/\"3b3863d52523764d2a5563f0a4f90eb3\"",
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
+ "deployments": [
22
+ {
23
+ "id": "cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18",
24
+ "app_id": "5ed0fe5d884fef000f5e4fd1",
25
+ "created_at": "2020-05-29T12:21:51.275Z",
26
+ "finished_at": "2020-05-29T12:23:25.688+00:00",
27
+ "status": "success",
28
+ "git_ref": "a5dca8ec8f48630c07c56fd8370e4f5535fe0fd8",
29
+ "previous_git_ref": null,
30
+ "type": "oneclick",
31
+ "image": "registry-1-staging.scalingo.com/app-example-running-app:a5dca8ec8f48630-cabf82f2-1cb1-4",
32
+ "registry": "registry-1-staging.scalingo.com",
33
+ "postdeploy_hook": null,
34
+ "duration": 92,
35
+ "pusher": {
36
+ "username": "example-username",
37
+ "email": "example@null.scalingo.com",
38
+ "id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
39
+ },
40
+ "links": {
41
+ "output": "https://api-staging.scalingo.com/v1/apps/5ed0fe5d884fef000f5e4fd1/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18/output"
42
+ }
43
+ }
44
+ ],
45
+ "meta": {
46
+ "pagination": {
47
+ "current_page": 1,
48
+ "next_page": null,
49
+ "previous_page": null,
50
+ "total_pages": 1,
51
+ "total_count": 1
52
+ }
53
+ }
54
+ }
55
+ }
56
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "path": "/apps/example-running-application/deployments/cabf82f2-1cb1-46d4-b09e-bfb6fe09bc18/output",
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:16 GMT",
13
+ "Etag": "W/\"3b51fb100eba358988799fd2fbcc51ec\"",
14
+ "Content-Type": "text/plain; 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
+ "body": " \u001b[1m<-- Start deployment of example-running-app -->\u001b[0m\n Fetching source code\n=====> Downloading Buildpack: https://github.com/Scalingo/apt-buildpack.git\n=====> Detected Framework: Apt\n-----> Detected Aptfile changes, flushing cache\n-----> Adding custom repositories\n-----> Updating apt caches\n Get:1 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease [15.4 kB]\n Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]\n Get:3 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB]\n Get:4 http://apt.postgresql.org/pub/repos/apt bionic-pgdg InRelease [84.6 kB]\n Get:5 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]\n Get:6 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]\n Err:1 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease\n The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1E9377A2BA9EF27F\n Get:7 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [931 kB]\n Get:8 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [854 kB]\n Get:9 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [8815 B]\n Get:10 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [59.3 kB]\n Get:11 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB]\n Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB]\n Get:13 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB]\n Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB]\n Get:15 http://apt.postgresql.org/pub/repos/apt bionic-pgdg/main amd64 Packages [304 kB]\n Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1385 kB]\n Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [73.6 kB]\n Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1228 kB]\n Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [20.1 kB]\n Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [8158 B]\n Get:21 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [8286 B]\n Reading package lists...\nW: GPG error: http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1E9377A2BA9EF27F\nE: The repository 'http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty InRelease' is not signed.\n-----> Fetching .debs for g++-5\n Reading package lists...\n Building dependency tree...\n The following additional packages will be installed:\n cpp-5 gcc-5 gcc-5-base libasan2 libgcc-5-dev libisl15 libmpx0\n libstdc++-5-dev\n Suggested packages:\n gcc-5-locales g++-5-multilib gcc-5-doc libstdc++6-5-dbg gcc-5-multilib\n libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan2-dbg\n liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx0-dbg\n libquadmath0-dbg libstdc++-5-doc\n The following NEW packages will be installed:\n cpp-5 g++-5 gcc-5 gcc-5-base libasan2 libgcc-5-dev libisl15 libmpx0\n libstdc++-5-dev\n 0 upgraded, 9 newly installed, 0 to remove and 130 not upgraded.\n Need to get 29.1 MB of archives.\n After this operation, 100 MB of additional disk space will be used.\n Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 gcc-5-base amd64 5.5.0-12ubuntu1 [17.1 kB]\n Get:2 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libisl15 amd64 0.18-4 [548 kB]\n Get:3 http://archive.ubuntu.com/ubuntu bionic/universe amd64 cpp-5 amd64 5.5.0-12ubuntu1 [7785 kB]\n Get:4 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libasan2 amd64 5.5.0-12ubuntu1 [264 kB]\n Get:5 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libmpx0 amd64 5.5.0-12ubuntu1 [9888 B]\n Get:6 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgcc-5-dev amd64 5.5.0-12ubuntu1 [2224 kB]\n Get:7 http://archive.ubuntu.com/ubuntu bionic/universe amd64 gcc-5 amd64 5.5.0-12ubuntu1 [8357 kB]\n Get:8 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libstdc++-5-dev amd64 5.5.0-12ubuntu1 [1415 kB]\n Get:9 http://archive.ubuntu.com/ubuntu bionic/universe amd64 g++-5 amd64 5.5.0-12ubuntu1 [8450 kB]\n Fetched 29.1 MB in 1s (26.5 MB/s)\n Download complete and in download only mode\nW: --force-yes is deprecated, use one of the options starting with --allow instead.\n-----> Installing cpp-5_5.5.0-12ubuntu1_amd64.deb\n-----> Installing g++-5_5.5.0-12ubuntu1_amd64.deb\n-----> Installing gcc-5-base_5.5.0-12ubuntu1_amd64.deb\n-----> Installing gcc-5_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libasan2_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libgcc-5-dev_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libisl15_0.18-4_amd64.deb\n-----> Installing libmpx0_5.5.0-12ubuntu1_amd64.deb\n-----> Installing libstdc++-5-dev_5.5.0-12ubuntu1_amd64.deb\n-----> Writing profile script\n-----> Rewrite package-config files\n=====> Downloading Buildpack: https://github.com/Scalingo/nodejs-buildpack.git\n=====> Detected Framework: Node.js\n \n-----> Creating runtime environment\n \n NPM_CONFIG_LOGLEVEL=error\n NODE_ENV=production\n NODE_MODULES_CACHE=true\n NODE_VERBOSE=false\n NODE_EXTRA_CA_CERTS=/usr/share/ca-certificates/Scalingo/scalingo-database.pem\n \n-----> Installing binaries\n engines.node (package.json): 8.9.x\n engines.npm (package.json): unspecified (use default)\n \n Resolving node version 8.9.x...\n Downloading and installing node 8.9.4...\n Using default npm version: 5.6.0\n \n-----> Installing dependencies\n Installing node modules (package.json + package-lock)\n added 99 packages in 3.831s\n \n-----> Build\n \n-----> Caching build\n - node_modules\n \n-----> Pruning devDependencies\n Skipping because npm 5.6.0 sometimes fails when running 'npm prune' due to a known issue\n https://github.com/npm/npm/issues/19356\n \n You can silence this warning by updating to at least npm 5.7.1 in your package.json\n https://doc.scalingo.com/languages/nodejs/start#specifying-a-nodejs-version\n \n-----> Build succeeded!\nUsing release configuration from last framework (Node.js).\n-----> Procfile declares types -> clock, postdeploy\n\u001b[0;36m Build complete, shipping your container...\u001b[0m\n\u001b[0;36m Waiting for your application to boot... \u001b[0m\n\u001b[0;36m Postdeploy hook detected, starting 'ls -la /'\u001b[0m\n2020-05-29 14:23:20.938411390 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 May 29 12:23 .\r\n2020-05-29 14:23:20.938217012 +0200 CEST [postdeploy-2231] total 92\r\n2020-05-29 14:23:20.938699447 +0200 CEST [postdeploy-2231] -rwxr-xr-x 1 root root 0 May 29 12:23 .dockerenv\r\n2020-05-29 14:23:20.938556211 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 May 29 12:23 ..\r\n2020-05-29 14:23:20.938969163 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 23 16:33 bin\r\n2020-05-29 14:23:20.939246376 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 appsdeck appsdeck 4096 May 29 12:22 build\r\n2020-05-29 14:23:20.939515640 +0200 CEST [postdeploy-2231] drwxr-xr-x 5 root root 340 May 29 12:23 dev\r\n2020-05-29 14:23:20.939644556 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 May 29 12:23 etc\r\n2020-05-29 14:23:20.939917192 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 23 16:35 lib\r\n2020-05-29 14:23:20.940193619 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 lib64\r\n2020-05-29 14:23:20.940333958 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 media\r\n2020-05-29 14:23:20.940464823 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 mnt\r\n2020-05-29 14:23:20.940627343 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 opt\r\n2020-05-29 14:23:20.940758545 +0200 CEST [postdeploy-2231] dr-xr-xr-x 1109 root root 0 May 29 12:23 proc\r\n2020-05-29 14:23:20.941173843 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 19 04:21 sbin\r\n2020-05-29 14:23:20.941471711 +0200 CEST [postdeploy-2231] -rwxr-xr-x 1 root root 2591 May 29 12:22 start\r\n2020-05-29 14:23:20.941794793 +0200 CEST [postdeploy-2231] dr-xr-xr-x 13 root root 0 Jun 21 2019 sys\r\n2020-05-29 14:23:20.941797466 +0200 CEST [postdeploy-2231] drwxrwxrwt 1 root root 4096 May 29 12:23 tmp\r\n2020-05-29 14:23:20.941799437 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 30 14:27 var\r\n2020-05-29 14:23:21.392354937 +0200 CEST [manager] container [postdeploy-2231] (5ed0feb862291b50b7473aeb) has stopped\r\n\u001b[0;36m Postdeploy hook succeeded, accepting deployment... \u001b[0m\n \u001b[1m<-- https://example-running-app.staging.scalingo.io -->\u001b[0m\n"
21
+ }
22
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "path": "/apps/example-running-application/deployments/not-found/output",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 404,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 13:27:17 GMT",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "no-cache",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "resource": "deployment",
21
+ "error": "not found"
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "app_id": "5ed10ae7f112e2000f9f93be",
3
+ "id": "5ed10ae9884fef000f5e500b",
4
+ "not_found_id": "not-found",
5
+ "create": {
6
+ "valid": {
7
+ "name": "somedomain.scalingo.com"
8
+ },
9
+ "invalid": {
10
+ "wrong": "params"
11
+ }
12
+ },
13
+ "update": {
14
+ "valid": {
15
+ "canonical": true
16
+ },
17
+ "invalid": {
18
+ "tlscert": "something"
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains",
3
+ "method": "post",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token",
7
+ "Content-Type": "application/json"
8
+ },
9
+ "json_body": {
10
+ "domain": {
11
+ "name": "somedomain.scalingo.com"
12
+ }
13
+ }
14
+ },
15
+ "response": {
16
+ "status": 201,
17
+ "headers": {
18
+ "Date": "Fri, 29 May 2020 13:15:21 GMT",
19
+ "Etag": "W/\"a9d277ab377e9776938dd86462cf500c\"",
20
+ "Content-Type": "application/json; charset=utf-8",
21
+ "Transfer-Encoding": "chunked",
22
+ "Connection": "keep-alive",
23
+ "Cache-Control": "max-age=0, private, must-revalidate",
24
+ "Referrer-Policy": "strict-origin-when-cross-origin"
25
+ },
26
+ "json_body": {
27
+ "domain": {
28
+ "id": "5ed10ae9884fef000f5e500b",
29
+ "app_id": "5ed10ae7f112e2000f9f93be",
30
+ "name": "somedomain.scalingo.com",
31
+ "created_at": "2020-05-29T13:15:21.050Z",
32
+ "ssl": false,
33
+ "letsencrypt": false,
34
+ "letsencrypt_status": "new",
35
+ "canonical": false,
36
+ "acme_dns_fqdn": null,
37
+ "acme_dns_value": null,
38
+ "acme_dns_error": {
39
+ },
40
+ "acme_challenge_error": null
41
+ }
42
+ }
43
+ }
44
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains",
3
+ "method": "post",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token",
7
+ "Content-Type": "application/json"
8
+ },
9
+ "json_body": {
10
+ "domain": {
11
+ "wrong": "params"
12
+ }
13
+ }
14
+ },
15
+ "response": {
16
+ "status": 422,
17
+ "headers": {
18
+ "Date": "Fri, 29 May 2020 13:15:20 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
+ "name": [
28
+ "can't be blank"
29
+ ]
30
+ }
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains/5ed10ae9884fef000f5e500b",
3
+ "method": "delete",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 204,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 13:15:22 GMT",
13
+ "Connection": "keep-alive",
14
+ "Cache-Control": "no-cache",
15
+ "Referrer-Policy": "strict-origin-when-cross-origin"
16
+ },
17
+ "body": ""
18
+ }
19
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains/not-found",
3
+ "method": "delete",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 404,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 13:15:22 GMT",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "no-cache",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "resource": "domain",
21
+ "error": "not found"
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains/5ed10ae9884fef000f5e500b",
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:15:21 GMT",
13
+ "Etag": "W/\"a9d277ab377e9776938dd86462cf500c\"",
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
+ "domain": {
22
+ "id": "5ed10ae9884fef000f5e500b",
23
+ "app_id": "5ed10ae7f112e2000f9f93be",
24
+ "name": "somedomain.scalingo.com",
25
+ "created_at": "2020-05-29T13:15:21.050Z",
26
+ "ssl": false,
27
+ "letsencrypt": false,
28
+ "letsencrypt_status": "new",
29
+ "canonical": false,
30
+ "acme_dns_fqdn": null,
31
+ "acme_dns_value": null,
32
+ "acme_dns_error": {
33
+ },
34
+ "acme_challenge_error": null
35
+ }
36
+ }
37
+ }
38
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains/not-found",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 404,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 13:15:21 GMT",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "no-cache",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "resource": "domain",
21
+ "error": "not found"
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "path": "/apps/5ed10ae7f112e2000f9f93be/domains",
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:15:21 GMT",
13
+ "Etag": "W/\"d9351b8d4b2fd4bb06d54b85205c4c2c\"",
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
+ "domains": [
22
+ {
23
+ "id": "5ed10ae9884fef000f5e500b",
24
+ "app_id": "5ed10ae7f112e2000f9f93be",
25
+ "name": "somedomain.scalingo.com",
26
+ "created_at": "2020-05-29T13:15:21.050Z",
27
+ "ssl": false,
28
+ "letsencrypt": false,
29
+ "letsencrypt_status": "new",
30
+ "canonical": false,
31
+ "acme_dns_fqdn": null,
32
+ "acme_dns_value": null,
33
+ "acme_dns_error": {
34
+ },
35
+ "acme_challenge_error": null
36
+ }
37
+ ]
38
+ }
39
+ }
40
+ }