scalingo 3.5.0 → 4.0.beta2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +1 -1
  3. data/.github/workflows/ruby.yml +1 -1
  4. data/.rubocop.yml +40 -0
  5. data/CHANGELOG.md +22 -1
  6. data/Gemfile +2 -0
  7. data/README.md +13 -62
  8. data/bin/console +11 -1
  9. data/bin/lint +2 -0
  10. data/bin/setup +21 -6
  11. data/bin/specs +2 -0
  12. data/lib/scalingo/api/client.rb +21 -39
  13. data/lib/scalingo/api/endpoint.rb +88 -11
  14. data/lib/scalingo/auth/keys.rb +4 -50
  15. data/lib/scalingo/auth/scm_integrations.rb +4 -51
  16. data/lib/scalingo/auth/tokens.rb +5 -72
  17. data/lib/scalingo/auth/two_factor_auth.rb +4 -55
  18. data/lib/scalingo/auth/user.rb +3 -38
  19. data/lib/scalingo/bearer_token.rb +16 -9
  20. data/lib/scalingo/billing/profile.rb +3 -40
  21. data/lib/scalingo/client.rb +21 -31
  22. data/lib/scalingo/configuration.rb +0 -24
  23. data/lib/scalingo/core_client.rb +9 -29
  24. data/lib/scalingo/database/backups.rb +9 -0
  25. data/lib/scalingo/database/databases.rb +8 -0
  26. data/lib/scalingo/{regional_database.rb → database.rb} +3 -3
  27. data/lib/scalingo/faraday/extract_meta.rb +33 -0
  28. data/lib/scalingo/faraday/extract_root_value.rb +18 -0
  29. data/lib/scalingo/faraday/response.rb +36 -0
  30. data/lib/scalingo/regional/addons.rb +18 -130
  31. data/lib/scalingo/regional/apps.rb +10 -103
  32. data/lib/scalingo/regional/autoscalers.rb +5 -64
  33. data/lib/scalingo/regional/collaborators.rb +4 -51
  34. data/lib/scalingo/regional/containers.rb +4 -51
  35. data/lib/scalingo/regional/deployments.rb +3 -38
  36. data/lib/scalingo/regional/domains.rb +5 -64
  37. data/lib/scalingo/regional/environment.rb +6 -77
  38. data/lib/scalingo/regional/events.rb +5 -50
  39. data/lib/scalingo/regional/logs.rb +10 -28
  40. data/lib/scalingo/regional/metrics.rb +2 -34
  41. data/lib/scalingo/regional/notifiers.rb +7 -90
  42. data/lib/scalingo/regional/operations.rb +5 -18
  43. data/lib/scalingo/regional/scm_repo_links.rb +8 -103
  44. data/lib/scalingo/token_holder.rb +1 -46
  45. data/lib/scalingo/version.rb +1 -1
  46. data/scalingo.gemspec +4 -1
  47. metadata +61 -205
  48. data/lib/scalingo/api/response.rb +0 -69
  49. data/lib/scalingo/regional_database/backups.rb +0 -44
  50. data/lib/scalingo/regional_database/databases.rb +0 -31
  51. data/samples/auth/keys/_meta.json +0 -13
  52. data/samples/auth/keys/all-200.json +0 -62
  53. data/samples/auth/keys/create-201.json +0 -67
  54. data/samples/auth/keys/create-422.json +0 -34
  55. data/samples/auth/keys/destroy-204.json +0 -19
  56. data/samples/auth/keys/destroy-404.json +0 -19
  57. data/samples/auth/keys/show-200.json +0 -60
  58. data/samples/auth/keys/show-404.json +0 -19
  59. data/samples/auth/scm_integrations/_meta.json +0 -14
  60. data/samples/auth/scm_integrations/all-200.json +0 -41
  61. data/samples/auth/scm_integrations/create-201.json +0 -41
  62. data/samples/auth/scm_integrations/create-422.json +0 -36
  63. data/samples/auth/scm_integrations/destroy-204.json +0 -15
  64. data/samples/auth/scm_integrations/destroy-404.json +0 -23
  65. data/samples/auth/scm_integrations/show-200.json +0 -34
  66. data/samples/auth/scm_integrations/show-404.json +0 -23
  67. data/samples/auth/tokens/_meta.json +0 -13
  68. data/samples/auth/tokens/all-200.json +0 -32
  69. data/samples/auth/tokens/create-201.json +0 -37
  70. data/samples/auth/tokens/destroy-204.json +0 -19
  71. data/samples/auth/tokens/destroy-404.json +0 -19
  72. data/samples/auth/tokens/exchange-200.json +0 -25
  73. data/samples/auth/tokens/exchange-401.json +0 -24
  74. data/samples/auth/tokens/renew-200.json +0 -32
  75. data/samples/auth/tokens/renew-404.json +0 -20
  76. data/samples/auth/two_factor_auth/_meta.json +0 -10
  77. data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
  78. data/samples/auth/two_factor_auth/disable-success.json +0 -29
  79. data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
  80. data/samples/auth/two_factor_auth/initiate-success.json +0 -36
  81. data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
  82. data/samples/auth/two_factor_auth/status.json +0 -29
  83. data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
  84. data/samples/auth/two_factor_auth/validate-success.json +0 -49
  85. data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
  86. data/samples/auth/user/_meta.json +0 -10
  87. data/samples/auth/user/self.json +0 -54
  88. data/samples/auth/user/stop-free-trial.json +0 -24
  89. data/samples/auth/user/update-200.json +0 -59
  90. data/samples/auth/user/update-422.json +0 -33
  91. data/samples/billing/profile/_meta.json +0 -23
  92. data/samples/billing/profile/create-201.json +0 -50
  93. data/samples/billing/profile/create-400.json +0 -27
  94. data/samples/billing/profile/create-422.json +0 -44
  95. data/samples/billing/profile/show-200.json +0 -41
  96. data/samples/billing/profile/show-404.json +0 -22
  97. data/samples/billing/profile/update-200.json +0 -47
  98. data/samples/billing/profile/update-422.json +0 -32
  99. data/samples/regional/addons/_meta.json +0 -22
  100. data/samples/regional/addons/categories-guest.json +0 -36
  101. data/samples/regional/addons/categories-logged.json +0 -37
  102. data/samples/regional/addons/destroy-204.json +0 -19
  103. data/samples/regional/addons/destroy-404.json +0 -24
  104. data/samples/regional/addons/find-200.json +0 -48
  105. data/samples/regional/addons/find-404.json +0 -24
  106. data/samples/regional/addons/for-200.json +0 -50
  107. data/samples/regional/addons/providers-guest.json +0 -588
  108. data/samples/regional/addons/providers-logged.json +0 -705
  109. data/samples/regional/addons/provision-201.json +0 -58
  110. data/samples/regional/addons/provision-400.json +0 -29
  111. data/samples/regional/addons/sso-200.json +0 -49
  112. data/samples/regional/addons/sso-404.json +0 -24
  113. data/samples/regional/addons/token-200.json +0 -49
  114. data/samples/regional/addons/token-404.json +0 -24
  115. data/samples/regional/addons/update-200.json +0 -58
  116. data/samples/regional/addons/update-404.json +0 -30
  117. data/samples/regional/apps/_meta.json +0 -52
  118. data/samples/regional/apps/all.json +0 -99
  119. data/samples/regional/apps/create-201.json +0 -66
  120. data/samples/regional/apps/create-422.json +0 -34
  121. data/samples/regional/apps/destroy-204.json +0 -19
  122. data/samples/regional/apps/destroy-404.json +0 -24
  123. data/samples/regional/apps/destroy-422.json +0 -27
  124. data/samples/regional/apps/find-200.json +0 -60
  125. data/samples/regional/apps/find-404.json +0 -24
  126. data/samples/regional/apps/logs_url.json +0 -62
  127. data/samples/regional/apps/rename-200.json +0 -65
  128. data/samples/regional/apps/rename-404.json +0 -29
  129. data/samples/regional/apps/rename-422.json +0 -33
  130. data/samples/regional/apps/transfer-200.json +0 -65
  131. data/samples/regional/apps/transfer-404.json +0 -27
  132. data/samples/regional/apps/transfer-422.json +0 -34
  133. data/samples/regional/apps/update-200.json +0 -66
  134. data/samples/regional/apps/update-stack-404.json +0 -30
  135. data/samples/regional/autoscalers/_meta.json +0 -27
  136. data/samples/regional/autoscalers/create-201.json +0 -49
  137. data/samples/regional/autoscalers/create-500.json +0 -32
  138. data/samples/regional/autoscalers/destroy-204.json +0 -20
  139. data/samples/regional/autoscalers/destroy-404.json +0 -25
  140. data/samples/regional/autoscalers/find-200.json +0 -39
  141. data/samples/regional/autoscalers/find-404.json +0 -25
  142. data/samples/regional/autoscalers/for-200.json +0 -41
  143. data/samples/regional/autoscalers/update-200.json +0 -45
  144. data/samples/regional/autoscalers/update-404.json +0 -31
  145. data/samples/regional/autoscalers/update-500.json +0 -30
  146. data/samples/regional/collaborators/_meta.json +0 -17
  147. data/samples/regional/collaborators/accept-200.json +0 -60
  148. data/samples/regional/collaborators/accept-400.json +0 -24
  149. data/samples/regional/collaborators/accept-404.json +0 -24
  150. data/samples/regional/collaborators/destroy-204.json +0 -19
  151. data/samples/regional/collaborators/destroy-404.json +0 -24
  152. data/samples/regional/collaborators/for-200.json +0 -34
  153. data/samples/regional/collaborators/invite-201.json +0 -37
  154. data/samples/regional/collaborators/invite-422.json +0 -34
  155. data/samples/regional/containers/_meta.json +0 -25
  156. data/samples/regional/containers/for-200.json +0 -39
  157. data/samples/regional/containers/restart-202.json +0 -28
  158. data/samples/regional/containers/restart-422.json +0 -33
  159. data/samples/regional/containers/scale-202.json +0 -48
  160. data/samples/regional/containers/scale-422.json +0 -36
  161. data/samples/regional/containers/sizes-guest.json +0 -115
  162. data/samples/regional/containers/sizes-logged.json +0 -116
  163. data/samples/regional/deployments/_meta.json +0 -8
  164. data/samples/regional/deployments/find-200.json +0 -45
  165. data/samples/regional/deployments/find-404.json +0 -24
  166. data/samples/regional/deployments/for-with-paging.json +0 -35
  167. data/samples/regional/deployments/for-without-pages.json +0 -56
  168. data/samples/regional/deployments/logs-200.json +0 -22
  169. data/samples/regional/deployments/logs-404.json +0 -24
  170. data/samples/regional/domains/_meta.json +0 -21
  171. data/samples/regional/domains/create-201.json +0 -44
  172. data/samples/regional/domains/create-422.json +0 -33
  173. data/samples/regional/domains/destroy-204.json +0 -19
  174. data/samples/regional/domains/destroy-404.json +0 -24
  175. data/samples/regional/domains/find-200.json +0 -38
  176. data/samples/regional/domains/find-404.json +0 -24
  177. data/samples/regional/domains/for-200.json +0 -40
  178. data/samples/regional/domains/update-200.json +0 -44
  179. data/samples/regional/domains/update-404.json +0 -30
  180. data/samples/regional/domains/update-422.json +0 -33
  181. data/samples/regional/environment/_meta.json +0 -43
  182. data/samples/regional/environment/bulk-destroy-204.json +0 -19
  183. data/samples/regional/environment/bulk-update-200.json +0 -70
  184. data/samples/regional/environment/create-201.json +0 -36
  185. data/samples/regional/environment/create-422.json +0 -37
  186. data/samples/regional/environment/destroy-204.json +0 -19
  187. data/samples/regional/environment/destroy-404.json +0 -24
  188. data/samples/regional/environment/for-200.json +0 -31
  189. data/samples/regional/environment/update-200.json +0 -35
  190. data/samples/regional/environment/update-404.json +0 -30
  191. data/samples/regional/events/_meta.json +0 -3
  192. data/samples/regional/events/all-200.json +0 -619
  193. data/samples/regional/events/categories-guest.json +0 -66
  194. data/samples/regional/events/categories-logged.json +0 -67
  195. data/samples/regional/events/for-200.json +0 -404
  196. data/samples/regional/events/types-guest.json +0 -288
  197. data/samples/regional/events/types-logged.json +0 -289
  198. data/samples/regional/logs/_meta.json +0 -11
  199. data/samples/regional/logs/archives-200.json +0 -28
  200. data/samples/regional/logs/get-guest-200.json +0 -18
  201. data/samples/regional/logs/get-logged-200.json +0 -19
  202. data/samples/regional/logs/get-with-limit-200.json +0 -18
  203. data/samples/regional/metrics/_meta.json +0 -15
  204. data/samples/regional/metrics/for-invalid-400.json +0 -23
  205. data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
  206. data/samples/regional/metrics/for-valid-router-404.json +0 -23
  207. data/samples/regional/metrics/types-guest.json +0 -66
  208. data/samples/regional/metrics/types-logged.json +0 -67
  209. data/samples/regional/notifiers/_meta.json +0 -23
  210. data/samples/regional/notifiers/create-201.json +0 -55
  211. data/samples/regional/notifiers/create-404.json +0 -30
  212. data/samples/regional/notifiers/create-422.json +0 -36
  213. data/samples/regional/notifiers/destroy-204.json +0 -19
  214. data/samples/regional/notifiers/destroy-404.json +0 -24
  215. data/samples/regional/notifiers/find-200.json +0 -47
  216. data/samples/regional/notifiers/find-404.json +0 -24
  217. data/samples/regional/notifiers/for-200.json +0 -49
  218. data/samples/regional/notifiers/platforms-guest.json +0 -184
  219. data/samples/regional/notifiers/platforms-logged.json +0 -185
  220. data/samples/regional/notifiers/test-200.json +0 -22
  221. data/samples/regional/notifiers/test-404.json +0 -25
  222. data/samples/regional/notifiers/update-200.json +0 -53
  223. data/samples/regional/operations/_meta.json +0 -5
  224. data/samples/regional/operations/find-200.json +0 -31
  225. data/samples/regional/operations/find-404.json +0 -24
  226. data/samples/regional/scm_repo_links/_meta.json +0 -22
  227. data/samples/regional/scm_repo_links/create-201.json +0 -54
  228. data/samples/regional/scm_repo_links/destroy-204.json +0 -15
  229. data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
  230. data/samples/regional/scm_repo_links/show-200.json +0 -43
  231. data/samples/regional/scm_repo_links/update-200.json +0 -50
  232. data/samples/regional_database/backups/_meta.json +0 -4
  233. data/samples/regional_database/backups/archive-200.json +0 -24
  234. data/samples/regional_database/backups/archive-400.json +0 -24
  235. data/samples/regional_database/backups/create-201.json +0 -32
  236. data/samples/regional_database/backups/create-400.json +0 -24
  237. data/samples/regional_database/backups/for-200.json +0 -52
  238. data/samples/regional_database/backups/for-400.json +0 -24
  239. data/samples/regional_database/databases/_meta.json +0 -3
  240. data/samples/regional_database/databases/find-200.json +0 -47
  241. data/samples/regional_database/databases/find-400.json +0 -24
  242. data/samples/regional_database/databases/upgrade-202.json +0 -39
  243. data/samples/regional_database/databases/upgrade-400.json +0 -24
@@ -1,39 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/autoscalers/sc-5418fe67-885d-4e50-8cbe-9a9a2d2d690a",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Accept": "application/json",
7
- "Authorization": "Bearer the-bearer-token"
8
- }
9
- },
10
- "response": {
11
- "status": 200,
12
- "headers": {
13
- "Date": "Fri, 28 Aug 2020 11:48:30 GMT",
14
- "Etag": "W/\"c870c2f312d82030bde9ae13625f746d\"",
15
- "Content-Type": "application/json; charset=utf-8",
16
- "Transfer-Encoding": "chunked",
17
- "Connection": "keep-alive",
18
- "Cache-Control": "max-age=0, private, must-revalidate",
19
- "Referrer-Policy": "strict-origin-when-cross-origin"
20
- },
21
- "json_body": {
22
- "autoscaler": {
23
- "created_at": "2020-08-28T11:48:29.963Z",
24
- "updated_at": "2020-08-28T11:48:29.963Z",
25
- "id": "sc-5418fe67-885d-4e50-8cbe-9a9a2d2d690a",
26
- "app_id": "5f48ecb6f112e2000ef34f14",
27
- "container_type": "web",
28
- "alert_id_scale_up": "al-ecf1cff6-c415-4e7b-8a86-e0ef697b2d87",
29
- "alert_id_scale_down": "al-6ef726e8-d69b-44e1-8d67-3acef2a4802d",
30
- "min_containers": 3,
31
- "max_containers": 7,
32
- "last_scale": "0001-01-01T00:00:00Z",
33
- "disabled": false,
34
- "metric": "rpm_per_container",
35
- "target": 150
36
- }
37
- }
38
- }
39
- }
@@ -1,25 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/autoscalers/wrong-autoscaler-id",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Accept": "application/json",
7
- "Authorization": "Bearer the-bearer-token"
8
- }
9
- },
10
- "response": {
11
- "status": 404,
12
- "headers": {
13
- "Date": "Fri, 28 Aug 2020 11:48:30 GMT",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "no-cache",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "resource": "autoscaler",
22
- "error": "not found"
23
- }
24
- }
25
- }
@@ -1,41 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/autoscalers",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Accept": "application/json",
7
- "Authorization": "Bearer the-bearer-token"
8
- }
9
- },
10
- "response": {
11
- "status": 200,
12
- "headers": {
13
- "Date": "Fri, 28 Aug 2020 11:48:30 GMT",
14
- "Etag": "W/\"78d382e1680bcf4d9ff9e58c906714ba\"",
15
- "Content-Type": "application/json; charset=utf-8",
16
- "Transfer-Encoding": "chunked",
17
- "Connection": "keep-alive",
18
- "Cache-Control": "max-age=0, private, must-revalidate",
19
- "Referrer-Policy": "strict-origin-when-cross-origin"
20
- },
21
- "json_body": {
22
- "autoscalers": [
23
- {
24
- "created_at": "2020-08-28T11:48:29.963Z",
25
- "updated_at": "2020-08-28T11:48:29.963Z",
26
- "id": "sc-5418fe67-885d-4e50-8cbe-9a9a2d2d690a",
27
- "app_id": "5f48ecb6f112e2000ef34f14",
28
- "container_type": "web",
29
- "alert_id_scale_up": "al-ecf1cff6-c415-4e7b-8a86-e0ef697b2d87",
30
- "alert_id_scale_down": "al-6ef726e8-d69b-44e1-8d67-3acef2a4802d",
31
- "min_containers": 3,
32
- "max_containers": 7,
33
- "last_scale": "0001-01-01T00:00:00Z",
34
- "disabled": false,
35
- "metric": "rpm_per_container",
36
- "target": 150
37
- }
38
- ]
39
- }
40
- }
41
- }
@@ -1,45 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/autoscalers/sc-5418fe67-885d-4e50-8cbe-9a9a2d2d690a",
3
- "method": "patch",
4
- "request": {
5
- "headers": {
6
- "Accept": "application/json",
7
- "Authorization": "Bearer the-bearer-token",
8
- "Content-Type": "application/json"
9
- },
10
- "json_body": {
11
- "autoscaler": {
12
- "target": 200
13
- }
14
- }
15
- },
16
- "response": {
17
- "status": 200,
18
- "headers": {
19
- "Date": "Fri, 28 Aug 2020 11:48:31 GMT",
20
- "Etag": "W/\"f11b66f818316c26bb369e2e72009d4e\"",
21
- "Content-Type": "application/json; charset=utf-8",
22
- "Transfer-Encoding": "chunked",
23
- "Connection": "keep-alive",
24
- "Cache-Control": "max-age=0, private, must-revalidate",
25
- "Referrer-Policy": "strict-origin-when-cross-origin"
26
- },
27
- "json_body": {
28
- "autoscaler": {
29
- "created_at": "2020-08-28T11:48:29.963Z",
30
- "updated_at": "2020-08-28T11:48:31.56609493Z",
31
- "id": "sc-5418fe67-885d-4e50-8cbe-9a9a2d2d690a",
32
- "app_id": "5f48ecb6f112e2000ef34f14",
33
- "container_type": "web",
34
- "alert_id_scale_up": "al-ecf1cff6-c415-4e7b-8a86-e0ef697b2d87",
35
- "alert_id_scale_down": "al-6ef726e8-d69b-44e1-8d67-3acef2a4802d",
36
- "min_containers": 3,
37
- "max_containers": 7,
38
- "last_scale": "0001-01-01T00:00:00Z",
39
- "disabled": false,
40
- "metric": "rpm_per_container",
41
- "target": 200
42
- }
43
- }
44
- }
45
- }
@@ -1,31 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/autoscalers/wrong-autoscaler-id",
3
- "method": "patch",
4
- "request": {
5
- "headers": {
6
- "Accept": "application/json",
7
- "Authorization": "Bearer the-bearer-token",
8
- "Content-Type": "application/json"
9
- },
10
- "json_body": {
11
- "autoscaler": {
12
- "target": 200
13
- }
14
- }
15
- },
16
- "response": {
17
- "status": 404,
18
- "headers": {
19
- "Date": "Fri, 28 Aug 2020 11:48:30 GMT",
20
- "Content-Type": "application/json; charset=utf-8",
21
- "Transfer-Encoding": "chunked",
22
- "Connection": "keep-alive",
23
- "Cache-Control": "no-cache",
24
- "Referrer-Policy": "strict-origin-when-cross-origin"
25
- },
26
- "json_body": {
27
- "resource": "autoscaler",
28
- "error": "not found"
29
- }
30
- }
31
- }
@@ -1,30 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/autoscalers/sc-5418fe67-885d-4e50-8cbe-9a9a2d2d690a",
3
- "method": "patch",
4
- "request": {
5
- "headers": {
6
- "Accept": "application/json",
7
- "Authorization": "Bearer the-bearer-token",
8
- "Content-Type": "application/json"
9
- },
10
- "json_body": {
11
- "autoscaler": {
12
- "metric": "unknown"
13
- }
14
- }
15
- },
16
- "response": {
17
- "status": 500,
18
- "headers": {
19
- "Date": "Fri, 28 Aug 2020 11:48:31 GMT",
20
- "Content-Type": "application/json; charset=utf-8",
21
- "Transfer-Encoding": "chunked",
22
- "Connection": "keep-alive",
23
- "Cache-Control": "no-cache",
24
- "Referrer-Policy": "strict-origin-when-cross-origin"
25
- },
26
- "json_body": {
27
- "error": "Internal error occured, we're on it!"
28
- }
29
- }
30
- }
@@ -1,17 +0,0 @@
1
- {
2
- "app_id": "5ed12f4c884fef000f5e5047",
3
- "id": "5ed12f4df112e2000f9f93f2",
4
- "not_found_id": "not-found-collaborator",
5
- "invite": {
6
- "valid": {
7
- "email": "collaborator@null.scalingo.com"
8
- },
9
- "invalid": {
10
- "wrong": "params"
11
- }
12
- },
13
- "accept": {
14
- "valid": "edd8badd0538816f6f80f3bf40a06bffbb85c443",
15
- "invalid": "some-token"
16
- }
17
- }
@@ -1,60 +0,0 @@
1
- {
2
- "path": "/apps/collaboration?token=edd8badd0538816f6f80f3bf40a06bffbb85c443",
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 15:50:39 GMT",
13
- "Etag": "W/\"e754717b790b2c068949cbe88e2da755\"",
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
- "app": {
22
- "id": "5ed12f4c884fef000f5e5047",
23
- "name": "some-example-app",
24
- "parent_app_name": "",
25
- "git_url": "git@staging.scalingo.com:some-example-app.git",
26
- "url": "https://some-example-app.staging.scalingo.io",
27
- "created_at": "2020-05-29T15:50:37.066Z",
28
- "updated_at": "2020-05-29T15:50:37.066Z",
29
- "status": "new",
30
- "owner": {
31
- "username": "example-username",
32
- "email": "example@null.scalingo.com",
33
- "id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
34
- "flags": {
35
- "": true,
36
- "admin": true
37
- }
38
- },
39
- "last_deployed_at": null,
40
- "last_deployed_by": null,
41
- "links": {
42
- "deployments_stream": "wss://deployments-staging.scalingo.com/apps/some-example-app"
43
- },
44
- "git_source": null,
45
- "flags": {
46
- },
47
- "limits": {
48
- },
49
- "last_deployment_id": null,
50
- "force_https": false,
51
- "sticky_session": false,
52
- "router_logs": false,
53
- "stack_id": "st-66a577a9-7c41-4fbc-b8ac-07cebd91339b",
54
- "base_url": "https://some-example-app.staging.scalingo.io",
55
- "new_dashboard_url": null,
56
- "new_region": null
57
- }
58
- }
59
- }
60
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/apps/collaboration?token=edd8badd0538816f6f80f3bf40a06bffbb85c443",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 400,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 15:50:38 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
- "type": "already-collaborator",
21
- "error": "You're already working on this app, this invitation is for collaborator@null.scalingo.com"
22
- }
23
- }
24
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/apps/collaboration?token=some-token",
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 15:50:38 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": "collaborator",
21
- "error": "not found"
22
- }
23
- }
24
- }
@@ -1,19 +0,0 @@
1
- {
2
- "path": "/apps/5ed12f4c884fef000f5e5047/collaborators/5ed12f4df112e2000f9f93f2",
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 15:50:39 GMT",
13
- "Connection": "keep-alive",
14
- "Cache-Control": "no-cache",
15
- "Referrer-Policy": "strict-origin-when-cross-origin"
16
- },
17
- "body": ""
18
- }
19
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/apps/5ed12f4c884fef000f5e5047/collaborators/not-found-collaborator",
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 15:50:39 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": "collaborator",
21
- "error": "not found"
22
- }
23
- }
24
- }
@@ -1,34 +0,0 @@
1
- {
2
- "path": "/apps/5ed12f4c884fef000f5e5047/collaborators",
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 15:50:39 GMT",
13
- "Etag": "W/\"ce6999ba62a118218a598eba342018a1\"",
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
- "collaborators": [
22
- {
23
- "id": "5ed12f4df112e2000f9f93f2",
24
- "email": "collaborator@null.scalingo.com",
25
- "username": "collaborator",
26
- "status": "accepted",
27
- "invitation_link": "https://my.st-sc.fr/apps/collaboration?token=",
28
- "app_id": "5ed12f4c884fef000f5e5047",
29
- "user_id": "us-d5b215fa-0fcc-4d61-ba8f-24e94597490f"
30
- }
31
- ]
32
- }
33
- }
34
- }
@@ -1,37 +0,0 @@
1
- {
2
- "path": "/apps/5ed12f4c884fef000f5e5047/collaborators",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Type": "application/json"
8
- },
9
- "json_body": {
10
- "collaborator": {
11
- "email": "collaborator@null.scalingo.com"
12
- }
13
- }
14
- },
15
- "response": {
16
- "status": 201,
17
- "headers": {
18
- "Date": "Fri, 29 May 2020 15:50:38 GMT",
19
- "Etag": "W/\"a7ee60d68a08a38cb393f44fb622ed3c\"",
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
- "collaborator": {
28
- "id": "5ed12f4df112e2000f9f93f2",
29
- "email": "collaborator@null.scalingo.com",
30
- "username": "n/a",
31
- "status": "pending",
32
- "invitation_link": "https://my.st-sc.fr/apps/collaboration?token=edd8badd0538816f6f80f3bf40a06bffbb85c443",
33
- "app_id": "5ed12f4c884fef000f5e5047"
34
- }
35
- }
36
- }
37
- }
@@ -1,34 +0,0 @@
1
- {
2
- "path": "/apps/5ed12f4c884fef000f5e5047/collaborators",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Type": "application/json"
8
- },
9
- "json_body": {
10
- "collaborator": {
11
- "wrong": "params"
12
- }
13
- }
14
- },
15
- "response": {
16
- "status": 422,
17
- "headers": {
18
- "Date": "Fri, 29 May 2020 15:50:37 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
- "email": [
28
- "can't be blank",
29
- "is invalid"
30
- ]
31
- }
32
- }
33
- }
34
- }
@@ -1,25 +0,0 @@
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
- }
@@ -1,39 +0,0 @@
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
- }
@@ -1,28 +0,0 @@
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
- }
@@ -1,33 +0,0 @@
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
- }