scalingo 3.5.0 → 4.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (241) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +41 -0
  3. data/CHANGELOG.md +14 -1
  4. data/Gemfile +2 -0
  5. data/README.md +13 -62
  6. data/bin/console +11 -1
  7. data/bin/lint +2 -0
  8. data/bin/setup +21 -6
  9. data/bin/specs +2 -0
  10. data/lib/scalingo/api/client.rb +21 -39
  11. data/lib/scalingo/api/endpoint.rb +88 -11
  12. data/lib/scalingo/auth/keys.rb +4 -50
  13. data/lib/scalingo/auth/scm_integrations.rb +4 -51
  14. data/lib/scalingo/auth/tokens.rb +5 -72
  15. data/lib/scalingo/auth/two_factor_auth.rb +4 -55
  16. data/lib/scalingo/auth/user.rb +3 -38
  17. data/lib/scalingo/bearer_token.rb +16 -9
  18. data/lib/scalingo/billing/profile.rb +3 -40
  19. data/lib/scalingo/client.rb +21 -31
  20. data/lib/scalingo/configuration.rb +0 -24
  21. data/lib/scalingo/core_client.rb +9 -29
  22. data/lib/scalingo/database/backups.rb +9 -0
  23. data/lib/scalingo/database/databases.rb +8 -0
  24. data/lib/scalingo/{regional_database.rb → database.rb} +3 -3
  25. data/lib/scalingo/faraday/extract_meta.rb +33 -0
  26. data/lib/scalingo/faraday/extract_root_value.rb +18 -0
  27. data/lib/scalingo/faraday/response.rb +36 -0
  28. data/lib/scalingo/regional/addons.rb +18 -130
  29. data/lib/scalingo/regional/apps.rb +10 -103
  30. data/lib/scalingo/regional/autoscalers.rb +5 -64
  31. data/lib/scalingo/regional/collaborators.rb +4 -51
  32. data/lib/scalingo/regional/containers.rb +4 -51
  33. data/lib/scalingo/regional/deployments.rb +3 -38
  34. data/lib/scalingo/regional/domains.rb +5 -64
  35. data/lib/scalingo/regional/environment.rb +6 -77
  36. data/lib/scalingo/regional/events.rb +5 -50
  37. data/lib/scalingo/regional/logs.rb +10 -28
  38. data/lib/scalingo/regional/metrics.rb +2 -34
  39. data/lib/scalingo/regional/notifiers.rb +7 -90
  40. data/lib/scalingo/regional/operations.rb +5 -18
  41. data/lib/scalingo/regional/scm_repo_links.rb +8 -103
  42. data/lib/scalingo/token_holder.rb +1 -46
  43. data/lib/scalingo/version.rb +1 -1
  44. data/scalingo.gemspec +3 -0
  45. metadata +59 -200
  46. data/lib/scalingo/api/response.rb +0 -69
  47. data/lib/scalingo/regional_database/backups.rb +0 -44
  48. data/lib/scalingo/regional_database/databases.rb +0 -31
  49. data/samples/auth/keys/_meta.json +0 -13
  50. data/samples/auth/keys/all-200.json +0 -62
  51. data/samples/auth/keys/create-201.json +0 -67
  52. data/samples/auth/keys/create-422.json +0 -34
  53. data/samples/auth/keys/destroy-204.json +0 -19
  54. data/samples/auth/keys/destroy-404.json +0 -19
  55. data/samples/auth/keys/show-200.json +0 -60
  56. data/samples/auth/keys/show-404.json +0 -19
  57. data/samples/auth/scm_integrations/_meta.json +0 -14
  58. data/samples/auth/scm_integrations/all-200.json +0 -41
  59. data/samples/auth/scm_integrations/create-201.json +0 -41
  60. data/samples/auth/scm_integrations/create-422.json +0 -36
  61. data/samples/auth/scm_integrations/destroy-204.json +0 -15
  62. data/samples/auth/scm_integrations/destroy-404.json +0 -23
  63. data/samples/auth/scm_integrations/show-200.json +0 -34
  64. data/samples/auth/scm_integrations/show-404.json +0 -23
  65. data/samples/auth/tokens/_meta.json +0 -13
  66. data/samples/auth/tokens/all-200.json +0 -32
  67. data/samples/auth/tokens/create-201.json +0 -37
  68. data/samples/auth/tokens/destroy-204.json +0 -19
  69. data/samples/auth/tokens/destroy-404.json +0 -19
  70. data/samples/auth/tokens/exchange-200.json +0 -25
  71. data/samples/auth/tokens/exchange-401.json +0 -24
  72. data/samples/auth/tokens/renew-200.json +0 -32
  73. data/samples/auth/tokens/renew-404.json +0 -20
  74. data/samples/auth/two_factor_auth/_meta.json +0 -10
  75. data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
  76. data/samples/auth/two_factor_auth/disable-success.json +0 -29
  77. data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
  78. data/samples/auth/two_factor_auth/initiate-success.json +0 -36
  79. data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
  80. data/samples/auth/two_factor_auth/status.json +0 -29
  81. data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
  82. data/samples/auth/two_factor_auth/validate-success.json +0 -49
  83. data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
  84. data/samples/auth/user/_meta.json +0 -10
  85. data/samples/auth/user/self.json +0 -54
  86. data/samples/auth/user/stop-free-trial.json +0 -24
  87. data/samples/auth/user/update-200.json +0 -59
  88. data/samples/auth/user/update-422.json +0 -33
  89. data/samples/billing/profile/_meta.json +0 -23
  90. data/samples/billing/profile/create-201.json +0 -50
  91. data/samples/billing/profile/create-400.json +0 -27
  92. data/samples/billing/profile/create-422.json +0 -44
  93. data/samples/billing/profile/show-200.json +0 -41
  94. data/samples/billing/profile/show-404.json +0 -22
  95. data/samples/billing/profile/update-200.json +0 -47
  96. data/samples/billing/profile/update-422.json +0 -32
  97. data/samples/regional/addons/_meta.json +0 -22
  98. data/samples/regional/addons/categories-guest.json +0 -36
  99. data/samples/regional/addons/categories-logged.json +0 -37
  100. data/samples/regional/addons/destroy-204.json +0 -19
  101. data/samples/regional/addons/destroy-404.json +0 -24
  102. data/samples/regional/addons/find-200.json +0 -48
  103. data/samples/regional/addons/find-404.json +0 -24
  104. data/samples/regional/addons/for-200.json +0 -50
  105. data/samples/regional/addons/providers-guest.json +0 -588
  106. data/samples/regional/addons/providers-logged.json +0 -705
  107. data/samples/regional/addons/provision-201.json +0 -58
  108. data/samples/regional/addons/provision-400.json +0 -29
  109. data/samples/regional/addons/sso-200.json +0 -49
  110. data/samples/regional/addons/sso-404.json +0 -24
  111. data/samples/regional/addons/token-200.json +0 -49
  112. data/samples/regional/addons/token-404.json +0 -24
  113. data/samples/regional/addons/update-200.json +0 -58
  114. data/samples/regional/addons/update-404.json +0 -30
  115. data/samples/regional/apps/_meta.json +0 -52
  116. data/samples/regional/apps/all.json +0 -99
  117. data/samples/regional/apps/create-201.json +0 -66
  118. data/samples/regional/apps/create-422.json +0 -34
  119. data/samples/regional/apps/destroy-204.json +0 -19
  120. data/samples/regional/apps/destroy-404.json +0 -24
  121. data/samples/regional/apps/destroy-422.json +0 -27
  122. data/samples/regional/apps/find-200.json +0 -60
  123. data/samples/regional/apps/find-404.json +0 -24
  124. data/samples/regional/apps/logs_url.json +0 -62
  125. data/samples/regional/apps/rename-200.json +0 -65
  126. data/samples/regional/apps/rename-404.json +0 -29
  127. data/samples/regional/apps/rename-422.json +0 -33
  128. data/samples/regional/apps/transfer-200.json +0 -65
  129. data/samples/regional/apps/transfer-404.json +0 -27
  130. data/samples/regional/apps/transfer-422.json +0 -34
  131. data/samples/regional/apps/update-200.json +0 -66
  132. data/samples/regional/apps/update-stack-404.json +0 -30
  133. data/samples/regional/autoscalers/_meta.json +0 -27
  134. data/samples/regional/autoscalers/create-201.json +0 -49
  135. data/samples/regional/autoscalers/create-500.json +0 -32
  136. data/samples/regional/autoscalers/destroy-204.json +0 -20
  137. data/samples/regional/autoscalers/destroy-404.json +0 -25
  138. data/samples/regional/autoscalers/find-200.json +0 -39
  139. data/samples/regional/autoscalers/find-404.json +0 -25
  140. data/samples/regional/autoscalers/for-200.json +0 -41
  141. data/samples/regional/autoscalers/update-200.json +0 -45
  142. data/samples/regional/autoscalers/update-404.json +0 -31
  143. data/samples/regional/autoscalers/update-500.json +0 -30
  144. data/samples/regional/collaborators/_meta.json +0 -17
  145. data/samples/regional/collaborators/accept-200.json +0 -60
  146. data/samples/regional/collaborators/accept-400.json +0 -24
  147. data/samples/regional/collaborators/accept-404.json +0 -24
  148. data/samples/regional/collaborators/destroy-204.json +0 -19
  149. data/samples/regional/collaborators/destroy-404.json +0 -24
  150. data/samples/regional/collaborators/for-200.json +0 -34
  151. data/samples/regional/collaborators/invite-201.json +0 -37
  152. data/samples/regional/collaborators/invite-422.json +0 -34
  153. data/samples/regional/containers/_meta.json +0 -25
  154. data/samples/regional/containers/for-200.json +0 -39
  155. data/samples/regional/containers/restart-202.json +0 -28
  156. data/samples/regional/containers/restart-422.json +0 -33
  157. data/samples/regional/containers/scale-202.json +0 -48
  158. data/samples/regional/containers/scale-422.json +0 -36
  159. data/samples/regional/containers/sizes-guest.json +0 -115
  160. data/samples/regional/containers/sizes-logged.json +0 -116
  161. data/samples/regional/deployments/_meta.json +0 -8
  162. data/samples/regional/deployments/find-200.json +0 -45
  163. data/samples/regional/deployments/find-404.json +0 -24
  164. data/samples/regional/deployments/for-with-paging.json +0 -35
  165. data/samples/regional/deployments/for-without-pages.json +0 -56
  166. data/samples/regional/deployments/logs-200.json +0 -22
  167. data/samples/regional/deployments/logs-404.json +0 -24
  168. data/samples/regional/domains/_meta.json +0 -21
  169. data/samples/regional/domains/create-201.json +0 -44
  170. data/samples/regional/domains/create-422.json +0 -33
  171. data/samples/regional/domains/destroy-204.json +0 -19
  172. data/samples/regional/domains/destroy-404.json +0 -24
  173. data/samples/regional/domains/find-200.json +0 -38
  174. data/samples/regional/domains/find-404.json +0 -24
  175. data/samples/regional/domains/for-200.json +0 -40
  176. data/samples/regional/domains/update-200.json +0 -44
  177. data/samples/regional/domains/update-404.json +0 -30
  178. data/samples/regional/domains/update-422.json +0 -33
  179. data/samples/regional/environment/_meta.json +0 -43
  180. data/samples/regional/environment/bulk-destroy-204.json +0 -19
  181. data/samples/regional/environment/bulk-update-200.json +0 -70
  182. data/samples/regional/environment/create-201.json +0 -36
  183. data/samples/regional/environment/create-422.json +0 -37
  184. data/samples/regional/environment/destroy-204.json +0 -19
  185. data/samples/regional/environment/destroy-404.json +0 -24
  186. data/samples/regional/environment/for-200.json +0 -31
  187. data/samples/regional/environment/update-200.json +0 -35
  188. data/samples/regional/environment/update-404.json +0 -30
  189. data/samples/regional/events/_meta.json +0 -3
  190. data/samples/regional/events/all-200.json +0 -619
  191. data/samples/regional/events/categories-guest.json +0 -66
  192. data/samples/regional/events/categories-logged.json +0 -67
  193. data/samples/regional/events/for-200.json +0 -404
  194. data/samples/regional/events/types-guest.json +0 -288
  195. data/samples/regional/events/types-logged.json +0 -289
  196. data/samples/regional/logs/_meta.json +0 -11
  197. data/samples/regional/logs/archives-200.json +0 -28
  198. data/samples/regional/logs/get-guest-200.json +0 -18
  199. data/samples/regional/logs/get-logged-200.json +0 -19
  200. data/samples/regional/logs/get-with-limit-200.json +0 -18
  201. data/samples/regional/metrics/_meta.json +0 -15
  202. data/samples/regional/metrics/for-invalid-400.json +0 -23
  203. data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
  204. data/samples/regional/metrics/for-valid-router-404.json +0 -23
  205. data/samples/regional/metrics/types-guest.json +0 -66
  206. data/samples/regional/metrics/types-logged.json +0 -67
  207. data/samples/regional/notifiers/_meta.json +0 -23
  208. data/samples/regional/notifiers/create-201.json +0 -55
  209. data/samples/regional/notifiers/create-404.json +0 -30
  210. data/samples/regional/notifiers/create-422.json +0 -36
  211. data/samples/regional/notifiers/destroy-204.json +0 -19
  212. data/samples/regional/notifiers/destroy-404.json +0 -24
  213. data/samples/regional/notifiers/find-200.json +0 -47
  214. data/samples/regional/notifiers/find-404.json +0 -24
  215. data/samples/regional/notifiers/for-200.json +0 -49
  216. data/samples/regional/notifiers/platforms-guest.json +0 -184
  217. data/samples/regional/notifiers/platforms-logged.json +0 -185
  218. data/samples/regional/notifiers/test-200.json +0 -22
  219. data/samples/regional/notifiers/test-404.json +0 -25
  220. data/samples/regional/notifiers/update-200.json +0 -53
  221. data/samples/regional/operations/_meta.json +0 -5
  222. data/samples/regional/operations/find-200.json +0 -31
  223. data/samples/regional/operations/find-404.json +0 -24
  224. data/samples/regional/scm_repo_links/_meta.json +0 -22
  225. data/samples/regional/scm_repo_links/create-201.json +0 -54
  226. data/samples/regional/scm_repo_links/destroy-204.json +0 -15
  227. data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
  228. data/samples/regional/scm_repo_links/show-200.json +0 -43
  229. data/samples/regional/scm_repo_links/update-200.json +0 -50
  230. data/samples/regional_database/backups/_meta.json +0 -4
  231. data/samples/regional_database/backups/archive-200.json +0 -24
  232. data/samples/regional_database/backups/archive-400.json +0 -24
  233. data/samples/regional_database/backups/create-201.json +0 -32
  234. data/samples/regional_database/backups/create-400.json +0 -24
  235. data/samples/regional_database/backups/for-200.json +0 -52
  236. data/samples/regional_database/backups/for-400.json +0 -24
  237. data/samples/regional_database/databases/_meta.json +0 -3
  238. data/samples/regional_database/databases/find-200.json +0 -47
  239. data/samples/regional_database/databases/find-400.json +0 -24
  240. data/samples/regional_database/databases/upgrade-202.json +0 -39
  241. data/samples/regional_database/databases/upgrade-400.json +0 -24
@@ -1,185 +0,0 @@
1
- {
2
- "path": "/notification_platforms",
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 14:56:18 GMT",
13
- "Etag": "W/\"d623819a5ecf8ecf3fdbd76058662f21\"",
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
- "notification_platforms": [
22
- {
23
- "id": "595cf87681ac730016cd5472",
24
- "name": "rocket_chat",
25
- "display_name": "Rocket.Chat",
26
- "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/rocket-chat-c56ae9ef87233d878ff18c3c3692084d.svg",
27
- "available_event_ids": [
28
- "595cf85d6bb8f100167429d1",
29
- "595cf85d6bb8f100167429d2",
30
- "595cf85d6bb8f100167429d3",
31
- "595cf85d6bb8f100167429d4",
32
- "595cf85d6bb8f100167429d5",
33
- "595cf85e6bb8f100167429d6",
34
- "595cf85e6bb8f100167429d7",
35
- "595cf85e6bb8f100167429d8",
36
- "595cf85e6bb8f100167429d9",
37
- "595cf85e6bb8f100167429db",
38
- "595cf85e6bb8f100167429dc",
39
- "595cf85e6bb8f100167429dd",
40
- "595cf85e6bb8f100167429de",
41
- "595cf85e6bb8f100167429df",
42
- "595cf85e6bb8f100167429e0",
43
- "595cf85e6bb8f100167429e1",
44
- "595cf85e6bb8f100167429e2",
45
- "595cf85e6bb8f100167429e3",
46
- "595cf85e6bb8f100167429e4",
47
- "595cf85e6bb8f100167429e5",
48
- "595cf85e6bb8f100167429e6",
49
- "595cf85e6bb8f100167429e7",
50
- "595cf85e6bb8f100167429e8",
51
- "595cf85e6bb8f100167429e9",
52
- "595cf85e6bb8f100167429ea",
53
- "595cf85e6bb8f100167429eb",
54
- "595cf85e6bb8f100167429ec",
55
- "595cf85e6bb8f100167429ed",
56
- "595cf85e6bb8f100167429ee",
57
- "595cf85e6bb8f100167429ef",
58
- "59c2797bc094990048778884"
59
- ],
60
- "description": "Automatically send chosen events to any RocketChat instance."
61
- },
62
- {
63
- "id": "595cf87681ac730016cd5471",
64
- "name": "webhook",
65
- "display_name": "Webhook",
66
- "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/webhook-1f16734c1d9b61dff4460d067ab980ec.svg",
67
- "available_event_ids": [
68
- "595cf85d6bb8f100167429d1",
69
- "595cf85d6bb8f100167429d2",
70
- "595cf85d6bb8f100167429d3",
71
- "595cf85d6bb8f100167429d4",
72
- "595cf85d6bb8f100167429d5",
73
- "595cf85e6bb8f100167429d6",
74
- "595cf85e6bb8f100167429d7",
75
- "595cf85e6bb8f100167429d8",
76
- "595cf85e6bb8f100167429d9",
77
- "595cf85e6bb8f100167429db",
78
- "595cf85e6bb8f100167429dc",
79
- "595cf85e6bb8f100167429dd",
80
- "595cf85e6bb8f100167429de",
81
- "595cf85e6bb8f100167429df",
82
- "595cf85e6bb8f100167429e0",
83
- "595cf85e6bb8f100167429e1",
84
- "595cf85e6bb8f100167429e2",
85
- "595cf85e6bb8f100167429e3",
86
- "595cf85e6bb8f100167429e4",
87
- "595cf85e6bb8f100167429e5",
88
- "595cf85e6bb8f100167429e6",
89
- "595cf85e6bb8f100167429e7",
90
- "595cf85e6bb8f100167429e8",
91
- "595cf85e6bb8f100167429e9",
92
- "595cf85e6bb8f100167429ea",
93
- "595cf85e6bb8f100167429eb",
94
- "595cf85e6bb8f100167429ec",
95
- "595cf85e6bb8f100167429ed",
96
- "595cf85e6bb8f100167429ee",
97
- "595cf85e6bb8f100167429ef",
98
- "59c2797bc094990048778884"
99
- ],
100
- "description": "Send HTTP requests to any target when events happen."
101
- },
102
- {
103
- "id": "595cf87681ac730016cd5470",
104
- "name": "slack",
105
- "display_name": "Slack",
106
- "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/slack-831fd1b21576dbb3e0037b7211ecfd93.svg",
107
- "available_event_ids": [
108
- "595cf85d6bb8f100167429d1",
109
- "595cf85d6bb8f100167429d2",
110
- "595cf85d6bb8f100167429d3",
111
- "595cf85d6bb8f100167429d4",
112
- "595cf85d6bb8f100167429d5",
113
- "595cf85e6bb8f100167429d6",
114
- "595cf85e6bb8f100167429d7",
115
- "595cf85e6bb8f100167429d8",
116
- "595cf85e6bb8f100167429d9",
117
- "595cf85e6bb8f100167429db",
118
- "595cf85e6bb8f100167429dc",
119
- "595cf85e6bb8f100167429dd",
120
- "595cf85e6bb8f100167429de",
121
- "595cf85e6bb8f100167429df",
122
- "595cf85e6bb8f100167429e0",
123
- "595cf85e6bb8f100167429e1",
124
- "595cf85e6bb8f100167429e2",
125
- "595cf85e6bb8f100167429e3",
126
- "595cf85e6bb8f100167429e4",
127
- "595cf85e6bb8f100167429e5",
128
- "595cf85e6bb8f100167429e6",
129
- "595cf85e6bb8f100167429e7",
130
- "595cf85e6bb8f100167429e8",
131
- "595cf85e6bb8f100167429e9",
132
- "595cf85e6bb8f100167429ea",
133
- "595cf85e6bb8f100167429eb",
134
- "595cf85e6bb8f100167429ec",
135
- "595cf85e6bb8f100167429ed",
136
- "595cf85e6bb8f100167429ee",
137
- "595cf85e6bb8f100167429ef",
138
- "59c2797bc094990048778884"
139
- ],
140
- "description": "Send events to your team thanks to Slack Incoming WebHooks."
141
- },
142
- {
143
- "id": "59c27732c094990021f325dc",
144
- "name": "email",
145
- "display_name": "Email",
146
- "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/email-ff68b7de90aed03248853abde33136a2.svg",
147
- "available_event_ids": [
148
- "595cf85d6bb8f100167429d1",
149
- "595cf85d6bb8f100167429d2",
150
- "595cf85d6bb8f100167429d3",
151
- "595cf85d6bb8f100167429d4",
152
- "595cf85d6bb8f100167429d5",
153
- "595cf85e6bb8f100167429d6",
154
- "595cf85e6bb8f100167429d7",
155
- "595cf85e6bb8f100167429d8",
156
- "595cf85e6bb8f100167429d9",
157
- "595cf85e6bb8f100167429db",
158
- "595cf85e6bb8f100167429dc",
159
- "595cf85e6bb8f100167429dd",
160
- "595cf85e6bb8f100167429de",
161
- "595cf85e6bb8f100167429df",
162
- "595cf85e6bb8f100167429e0",
163
- "595cf85e6bb8f100167429e1",
164
- "595cf85e6bb8f100167429e2",
165
- "595cf85e6bb8f100167429e3",
166
- "595cf85e6bb8f100167429e4",
167
- "595cf85e6bb8f100167429e5",
168
- "595cf85e6bb8f100167429e6",
169
- "595cf85e6bb8f100167429e7",
170
- "595cf85e6bb8f100167429e8",
171
- "595cf85e6bb8f100167429e9",
172
- "595cf85e6bb8f100167429ea",
173
- "595cf85e6bb8f100167429eb",
174
- "595cf85e6bb8f100167429ec",
175
- "595cf85e6bb8f100167429ed",
176
- "595cf85e6bb8f100167429ee",
177
- "595cf85e6bb8f100167429ef",
178
- "59c2797bc094990048778884"
179
- ],
180
- "description": "Send an email on key events to you and your collaborators."
181
- }
182
- ]
183
- }
184
- }
185
- }
@@ -1,22 +0,0 @@
1
- {
2
- "path": "/apps/5ed12291f112e2000f9f93ed/notifiers/no-a0354d81-4a89-49c3-9ee3-3a1b41678703/test",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Length": "0"
8
- }
9
- },
10
- "response": {
11
- "status": 200,
12
- "headers": {
13
- "Date": "Fri, 29 May 2020 14:56:20 GMT",
14
- "Content-Type": "text/plain; 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
- "body": ""
21
- }
22
- }
@@ -1,25 +0,0 @@
1
- {
2
- "path": "/apps/5ed12291f112e2000f9f93ed/notifiers/not-found/test",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Length": "0"
8
- }
9
- },
10
- "response": {
11
- "status": 404,
12
- "headers": {
13
- "Date": "Fri, 29 May 2020 14:56:21 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": "base",
22
- "error": "not found"
23
- }
24
- }
25
- }
@@ -1,53 +0,0 @@
1
- {
2
- "path": "/apps/5ed12291f112e2000f9f93ed/notifiers/no-a0354d81-4a89-49c3-9ee3-3a1b41678703",
3
- "method": "patch",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Type": "application/json"
8
- },
9
- "json_body": {
10
- "notifier": {
11
- "name": "some other name"
12
- }
13
- }
14
- },
15
- "response": {
16
- "status": 200,
17
- "headers": {
18
- "Date": "Fri, 29 May 2020 14:56:20 GMT",
19
- "Etag": "W/\"8a8ee812375a2edf01d146a4779f0288\"",
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
- "notifier": {
28
- "id": "no-a0354d81-4a89-49c3-9ee3-3a1b41678703",
29
- "name": "some other name",
30
- "active": false,
31
- "type": "email",
32
- "platform_id": "59c27732c094990021f325dc",
33
- "created_at": "2020-05-29T14:56:19.782Z",
34
- "updated_at": "2020-05-29T14:56:20.654Z",
35
- "send_all_alerts": false,
36
- "send_all_events": false,
37
- "selected_event_ids": [
38
-
39
- ],
40
- "app_id": "5ed12291f112e2000f9f93ed",
41
- "app": "some-example-app",
42
- "type_data": {
43
- "user_ids": [
44
-
45
- ],
46
- "emails": [
47
-
48
- ]
49
- }
50
- }
51
- }
52
- }
53
- }
@@ -1,5 +0,0 @@
1
- {
2
- "app_id": "example-running-application",
3
- "not_found_id": "not-found",
4
- "id": "5ed11f2c884fef000f5e502e"
5
- }
@@ -1,31 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/operations/5ed11f2c884fef000f5e502e",
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 14:41:48 GMT",
13
- "Etag": "W/\"da06f8876f68c938c969029e88ef3a3b\"",
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
- "operation": {
22
- "id": "5ed11f2c884fef000f5e502e",
23
- "app_id": "5ed0fe5d884fef000f5e4fd1",
24
- "created_at": "2020-05-29T14:41:48.360Z",
25
- "status": "running",
26
- "type": "restart",
27
- "message": null
28
- }
29
- }
30
- }
31
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/operations/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 14:41:48 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": "operation",
21
- "error": "not found"
22
- }
23
- }
24
- }
@@ -1,22 +0,0 @@
1
- {
2
- "app_id": "example-running-application",
3
- "create": {
4
- "valid": {
5
- "source": "https://github.com/Scalingo/sample-go-martini",
6
- "branch": "master",
7
- "auto_deploy_enabled": false,
8
- "deploy_review_apps_enabled": false,
9
- "delete_on_close_enabled": false,
10
- "hours_before_delete_on_close": 0
11
- }
12
- },
13
- "update": {
14
- "valid": {
15
- "branch": "prod",
16
- "auto_deploy_enabled": true
17
- }
18
- },
19
- "deploy": {
20
- "valid": "master"
21
- }
22
- }
@@ -1,54 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/scm_repo_link",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Type": "application/json"
8
- },
9
- "json_body": {
10
- "scm_repo_link" : {
11
- "source":"https://github.com/Scalingo/sample-go-martini",
12
- "branch":"master",
13
- "auto_deploy_enabled": false,
14
- "deploy_review_apps_enabled":false,
15
- "delete_on_close_enabled":false,
16
- "hours_before_delete_on_close":0
17
- }
18
- }
19
- },
20
- "response": {
21
- "status": 201,
22
- "headers": {
23
- "Content-Type": "application/json; charset=utf-8"
24
- },
25
- "json_body": {
26
- "scm_repo_link": [
27
- {
28
- "id":"42d04de5-5377-11e8-90e6-0242ac110052",
29
- "app_id": "1d6e59a0-5377-11e8-90e6-0242ac110052",
30
- "auth_integration_uuid": "14235182-54f4-4951-be65-d78020615818",
31
- "linker": {
32
- "id":"us-aa263090-9a23-81f5-8c7c-5fd9a50a8fa8",
33
- "username":"john",
34
- "email":"john.doe@example.com"
35
- },
36
- "created_at":"2018-05-09T12:53:52.276+02:00",
37
- "updated_at":"2018-06-01T11:45:26.078+02:00",
38
- "owner": "my-username",
39
- "repo": "my-company",
40
- "branch": "master",
41
- "scm_type": "github",
42
- "auto_deploy_enabled":false,
43
- "github_integration_uuid":"42d04de5-5377-11e8-90e6-0242ac110052",
44
- "deploy_review_apps_enabled":false,
45
- "delete_on_close_enabled":false,
46
- "hours_before_delete_on_close":0,
47
- "delete_stale_enabled":false,
48
- "hours_before_delete_stale":0,
49
- "last_auto_deploy_at":"2018-06-01T11:45:26.077+02:00"
50
- }
51
- ]
52
- }
53
- }
54
- }
@@ -1,15 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/scm_repo_link",
3
- "method": "delete",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 204,
11
- "headers": {
12
- },
13
- "body": ""
14
- }
15
- }
@@ -1,32 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/scm_repo_link/manual_deploy",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- },
8
- "json_body": {
9
- "branch": "master"
10
- }
11
- },
12
- "response": {
13
- "status": 200,
14
- "headers": {
15
- "Content-Type": "application/json; charset=utf-8"
16
- },
17
- "json_body": {
18
- "deployment": {
19
- "app_id": "54100930736f7563d5030000",
20
- "created_at": "2014-09-10T10:49:42.390+02:00",
21
- "git_ref": "abcdef1234567890",
22
- "status": "build-error",
23
- "id": "123e4567-e89b-12d3-a456-426655440000",
24
- "pusher": {
25
- "email": "user@example.com",
26
- "id": "54100245736f7563d5000000",
27
- "username": "john"
28
- }
29
- }
30
- }
31
- }
32
- }
@@ -1,43 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/scm_repo_link",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 200,
11
- "headers": {
12
- "Content-Type": "application/json; charset=utf-8"
13
- },
14
- "json_body": {
15
- "scm_repo_link": [
16
- {
17
- "id":"42d04de5-5377-11e8-90e6-0242ac110052",
18
- "app_id": "1d6e59a0-5377-11e8-90e6-0242ac110052",
19
- "auth_integration_uuid": "14235182-54f4-4951-be65-d78020615818",
20
- "linker": {
21
- "id":"us-aa263090-9a23-81f5-8c7c-5fd9a50a8fa8",
22
- "username":"john",
23
- "email":"john.doe@example.com"
24
- },
25
- "created_at":"2018-05-09T12:53:52.276+02:00",
26
- "updated_at":"2018-06-01T11:45:26.078+02:00",
27
- "owner": "my-username",
28
- "repo": "my-company",
29
- "branch": "master",
30
- "scm_type": "github",
31
- "auto_deploy_enabled":true,
32
- "github_integration_uuid":"42d04de5-5377-11e8-90e6-0242ac110052",
33
- "deploy_review_apps_enabled":false,
34
- "delete_on_close_enabled":false,
35
- "hours_before_delete_on_close":0,
36
- "delete_stale_enabled":false,
37
- "hours_before_delete_stale":0,
38
- "last_auto_deploy_at":"2018-06-01T11:45:26.077+02:00"
39
- }
40
- ]
41
- }
42
- }
43
- }
@@ -1,50 +0,0 @@
1
- {
2
- "path": "/apps/example-running-application/scm_repo_link",
3
- "method": "patch",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token",
7
- "Content-Type": "application/json"
8
- },
9
- "json_body": {
10
- "scm_repo_link" : {
11
- "branch":"prod",
12
- "auto_deploy_enabled": true
13
- }
14
- }
15
- },
16
- "response": {
17
- "status": 200,
18
- "headers": {
19
- "Content-Type": "application/json; charset=utf-8"
20
- },
21
- "json_body": {
22
- "scm_repo_link": [
23
- {
24
- "id":"42d04de5-5377-11e8-90e6-0242ac110052",
25
- "app_id": "1d6e59a0-5377-11e8-90e6-0242ac110052",
26
- "auth_integration_uuid": "14235182-54f4-4951-be65-d78020615818",
27
- "linker": {
28
- "id":"us-aa263090-9a23-81f5-8c7c-5fd9a50a8fa8",
29
- "username":"john",
30
- "email":"john.doe@example.com"
31
- },
32
- "created_at":"2018-05-09T12:53:52.276+02:00",
33
- "updated_at":"2018-06-01T11:45:26.078+02:00",
34
- "owner": "my-username",
35
- "repo": "my-company",
36
- "branch": "prod",
37
- "scm_type": "github",
38
- "auto_deploy_enabled":true,
39
- "github_integration_uuid":"42d04de5-5377-11e8-90e6-0242ac110052",
40
- "deploy_review_apps_enabled":false,
41
- "delete_on_close_enabled":false,
42
- "hours_before_delete_on_close":0,
43
- "delete_stale_enabled":false,
44
- "hours_before_delete_stale":0,
45
- "last_auto_deploy_at":"2018-06-01T11:45:26.077+02:00"
46
- }
47
- ]
48
- }
49
- }
50
- }
@@ -1,4 +0,0 @@
1
- {
2
- "addon_id": "63bfe3b600deff4f0516cc12",
3
- "backup_id": "5bb95a904ffb096e9a2831b8"
4
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/backups/5bb95a904ffb096e9a2831b8/archive",
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:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
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
- "download_url": "https://regional-database.scalingo.test/databases/63bfe3b600deff4f0516cc12/backups/5bb95a904ffb096e9a2831b8/download?token=token1234"
22
- }
23
- }
24
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/backups/5bb95a904ffb096e9a2831b8/archive",
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 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
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
- "error": "unauthorized"
22
- }
23
- }
24
- }
@@ -1,32 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/backups",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 201,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
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
- "database_backup": {
22
- "id": "5b8b36104ffb090be1ac3ce1",
23
- "created_at": "2019-07-18T03:00:00.178+02:00",
24
- "name": "20180902010000_kibana-3938",
25
- "size": 0,
26
- "status": "pending",
27
- "database_id": "597601234ffb097af4f3099b",
28
- "type": "postgresql"
29
- }
30
- }
31
- }
32
- }