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,184 @@
1
+ {
2
+ "path": "/notification_platforms",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ }
7
+ },
8
+ "response": {
9
+ "status": 200,
10
+ "headers": {
11
+ "Date": "Fri, 29 May 2020 14:56:18 GMT",
12
+ "Etag": "W/\"d623819a5ecf8ecf3fdbd76058662f21\"",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "max-age=0, private, must-revalidate",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "notification_platforms": [
21
+ {
22
+ "id": "595cf87681ac730016cd5472",
23
+ "name": "rocket_chat",
24
+ "display_name": "Rocket.Chat",
25
+ "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/rocket-chat-c56ae9ef87233d878ff18c3c3692084d.svg",
26
+ "available_event_ids": [
27
+ "595cf85d6bb8f100167429d1",
28
+ "595cf85d6bb8f100167429d2",
29
+ "595cf85d6bb8f100167429d3",
30
+ "595cf85d6bb8f100167429d4",
31
+ "595cf85d6bb8f100167429d5",
32
+ "595cf85e6bb8f100167429d6",
33
+ "595cf85e6bb8f100167429d7",
34
+ "595cf85e6bb8f100167429d8",
35
+ "595cf85e6bb8f100167429d9",
36
+ "595cf85e6bb8f100167429db",
37
+ "595cf85e6bb8f100167429dc",
38
+ "595cf85e6bb8f100167429dd",
39
+ "595cf85e6bb8f100167429de",
40
+ "595cf85e6bb8f100167429df",
41
+ "595cf85e6bb8f100167429e0",
42
+ "595cf85e6bb8f100167429e1",
43
+ "595cf85e6bb8f100167429e2",
44
+ "595cf85e6bb8f100167429e3",
45
+ "595cf85e6bb8f100167429e4",
46
+ "595cf85e6bb8f100167429e5",
47
+ "595cf85e6bb8f100167429e6",
48
+ "595cf85e6bb8f100167429e7",
49
+ "595cf85e6bb8f100167429e8",
50
+ "595cf85e6bb8f100167429e9",
51
+ "595cf85e6bb8f100167429ea",
52
+ "595cf85e6bb8f100167429eb",
53
+ "595cf85e6bb8f100167429ec",
54
+ "595cf85e6bb8f100167429ed",
55
+ "595cf85e6bb8f100167429ee",
56
+ "595cf85e6bb8f100167429ef",
57
+ "59c2797bc094990048778884"
58
+ ],
59
+ "description": "Automatically send chosen events to any RocketChat instance."
60
+ },
61
+ {
62
+ "id": "595cf87681ac730016cd5471",
63
+ "name": "webhook",
64
+ "display_name": "Webhook",
65
+ "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/webhook-1f16734c1d9b61dff4460d067ab980ec.svg",
66
+ "available_event_ids": [
67
+ "595cf85d6bb8f100167429d1",
68
+ "595cf85d6bb8f100167429d2",
69
+ "595cf85d6bb8f100167429d3",
70
+ "595cf85d6bb8f100167429d4",
71
+ "595cf85d6bb8f100167429d5",
72
+ "595cf85e6bb8f100167429d6",
73
+ "595cf85e6bb8f100167429d7",
74
+ "595cf85e6bb8f100167429d8",
75
+ "595cf85e6bb8f100167429d9",
76
+ "595cf85e6bb8f100167429db",
77
+ "595cf85e6bb8f100167429dc",
78
+ "595cf85e6bb8f100167429dd",
79
+ "595cf85e6bb8f100167429de",
80
+ "595cf85e6bb8f100167429df",
81
+ "595cf85e6bb8f100167429e0",
82
+ "595cf85e6bb8f100167429e1",
83
+ "595cf85e6bb8f100167429e2",
84
+ "595cf85e6bb8f100167429e3",
85
+ "595cf85e6bb8f100167429e4",
86
+ "595cf85e6bb8f100167429e5",
87
+ "595cf85e6bb8f100167429e6",
88
+ "595cf85e6bb8f100167429e7",
89
+ "595cf85e6bb8f100167429e8",
90
+ "595cf85e6bb8f100167429e9",
91
+ "595cf85e6bb8f100167429ea",
92
+ "595cf85e6bb8f100167429eb",
93
+ "595cf85e6bb8f100167429ec",
94
+ "595cf85e6bb8f100167429ed",
95
+ "595cf85e6bb8f100167429ee",
96
+ "595cf85e6bb8f100167429ef",
97
+ "59c2797bc094990048778884"
98
+ ],
99
+ "description": "Send HTTP requests to any target when events happen."
100
+ },
101
+ {
102
+ "id": "595cf87681ac730016cd5470",
103
+ "name": "slack",
104
+ "display_name": "Slack",
105
+ "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/slack-831fd1b21576dbb3e0037b7211ecfd93.svg",
106
+ "available_event_ids": [
107
+ "595cf85d6bb8f100167429d1",
108
+ "595cf85d6bb8f100167429d2",
109
+ "595cf85d6bb8f100167429d3",
110
+ "595cf85d6bb8f100167429d4",
111
+ "595cf85d6bb8f100167429d5",
112
+ "595cf85e6bb8f100167429d6",
113
+ "595cf85e6bb8f100167429d7",
114
+ "595cf85e6bb8f100167429d8",
115
+ "595cf85e6bb8f100167429d9",
116
+ "595cf85e6bb8f100167429db",
117
+ "595cf85e6bb8f100167429dc",
118
+ "595cf85e6bb8f100167429dd",
119
+ "595cf85e6bb8f100167429de",
120
+ "595cf85e6bb8f100167429df",
121
+ "595cf85e6bb8f100167429e0",
122
+ "595cf85e6bb8f100167429e1",
123
+ "595cf85e6bb8f100167429e2",
124
+ "595cf85e6bb8f100167429e3",
125
+ "595cf85e6bb8f100167429e4",
126
+ "595cf85e6bb8f100167429e5",
127
+ "595cf85e6bb8f100167429e6",
128
+ "595cf85e6bb8f100167429e7",
129
+ "595cf85e6bb8f100167429e8",
130
+ "595cf85e6bb8f100167429e9",
131
+ "595cf85e6bb8f100167429ea",
132
+ "595cf85e6bb8f100167429eb",
133
+ "595cf85e6bb8f100167429ec",
134
+ "595cf85e6bb8f100167429ed",
135
+ "595cf85e6bb8f100167429ee",
136
+ "595cf85e6bb8f100167429ef",
137
+ "59c2797bc094990048778884"
138
+ ],
139
+ "description": "Send events to your team thanks to Slack Incoming WebHooks."
140
+ },
141
+ {
142
+ "id": "59c27732c094990021f325dc",
143
+ "name": "email",
144
+ "display_name": "Email",
145
+ "logo_url": "https://cdn2.scalingo.com/dashboard-staging/assets/images/notification/email-ff68b7de90aed03248853abde33136a2.svg",
146
+ "available_event_ids": [
147
+ "595cf85d6bb8f100167429d1",
148
+ "595cf85d6bb8f100167429d2",
149
+ "595cf85d6bb8f100167429d3",
150
+ "595cf85d6bb8f100167429d4",
151
+ "595cf85d6bb8f100167429d5",
152
+ "595cf85e6bb8f100167429d6",
153
+ "595cf85e6bb8f100167429d7",
154
+ "595cf85e6bb8f100167429d8",
155
+ "595cf85e6bb8f100167429d9",
156
+ "595cf85e6bb8f100167429db",
157
+ "595cf85e6bb8f100167429dc",
158
+ "595cf85e6bb8f100167429dd",
159
+ "595cf85e6bb8f100167429de",
160
+ "595cf85e6bb8f100167429df",
161
+ "595cf85e6bb8f100167429e0",
162
+ "595cf85e6bb8f100167429e1",
163
+ "595cf85e6bb8f100167429e2",
164
+ "595cf85e6bb8f100167429e3",
165
+ "595cf85e6bb8f100167429e4",
166
+ "595cf85e6bb8f100167429e5",
167
+ "595cf85e6bb8f100167429e6",
168
+ "595cf85e6bb8f100167429e7",
169
+ "595cf85e6bb8f100167429e8",
170
+ "595cf85e6bb8f100167429e9",
171
+ "595cf85e6bb8f100167429ea",
172
+ "595cf85e6bb8f100167429eb",
173
+ "595cf85e6bb8f100167429ec",
174
+ "595cf85e6bb8f100167429ed",
175
+ "595cf85e6bb8f100167429ee",
176
+ "595cf85e6bb8f100167429ef",
177
+ "59c2797bc094990048778884"
178
+ ],
179
+ "description": "Send an email on key events to you and your collaborators."
180
+ }
181
+ ]
182
+ }
183
+ }
184
+ }
@@ -0,0 +1,185 @@
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
+ }
@@ -0,0 +1,22 @@
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
+ }
@@ -0,0 +1,25 @@
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
+ }
@@ -0,0 +1,53 @@
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
+ }