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.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +1 -1
- data/.github/workflows/ruby.yml +1 -1
- data/.rubocop.yml +40 -0
- data/CHANGELOG.md +22 -1
- data/Gemfile +2 -0
- data/README.md +13 -62
- data/bin/console +11 -1
- data/bin/lint +2 -0
- data/bin/setup +21 -6
- data/bin/specs +2 -0
- data/lib/scalingo/api/client.rb +21 -39
- data/lib/scalingo/api/endpoint.rb +88 -11
- data/lib/scalingo/auth/keys.rb +4 -50
- data/lib/scalingo/auth/scm_integrations.rb +4 -51
- data/lib/scalingo/auth/tokens.rb +5 -72
- data/lib/scalingo/auth/two_factor_auth.rb +4 -55
- data/lib/scalingo/auth/user.rb +3 -38
- data/lib/scalingo/bearer_token.rb +16 -9
- data/lib/scalingo/billing/profile.rb +3 -40
- data/lib/scalingo/client.rb +21 -31
- data/lib/scalingo/configuration.rb +0 -24
- data/lib/scalingo/core_client.rb +9 -29
- data/lib/scalingo/database/backups.rb +9 -0
- data/lib/scalingo/database/databases.rb +8 -0
- data/lib/scalingo/{regional_database.rb → database.rb} +3 -3
- data/lib/scalingo/faraday/extract_meta.rb +33 -0
- data/lib/scalingo/faraday/extract_root_value.rb +18 -0
- data/lib/scalingo/faraday/response.rb +36 -0
- data/lib/scalingo/regional/addons.rb +18 -130
- data/lib/scalingo/regional/apps.rb +10 -103
- data/lib/scalingo/regional/autoscalers.rb +5 -64
- data/lib/scalingo/regional/collaborators.rb +4 -51
- data/lib/scalingo/regional/containers.rb +4 -51
- data/lib/scalingo/regional/deployments.rb +3 -38
- data/lib/scalingo/regional/domains.rb +5 -64
- data/lib/scalingo/regional/environment.rb +6 -77
- data/lib/scalingo/regional/events.rb +5 -50
- data/lib/scalingo/regional/logs.rb +10 -28
- data/lib/scalingo/regional/metrics.rb +2 -34
- data/lib/scalingo/regional/notifiers.rb +7 -90
- data/lib/scalingo/regional/operations.rb +5 -18
- data/lib/scalingo/regional/scm_repo_links.rb +8 -103
- data/lib/scalingo/token_holder.rb +1 -46
- data/lib/scalingo/version.rb +1 -1
- data/scalingo.gemspec +4 -1
- metadata +61 -205
- data/lib/scalingo/api/response.rb +0 -69
- data/lib/scalingo/regional_database/backups.rb +0 -44
- data/lib/scalingo/regional_database/databases.rb +0 -31
- data/samples/auth/keys/_meta.json +0 -13
- data/samples/auth/keys/all-200.json +0 -62
- data/samples/auth/keys/create-201.json +0 -67
- data/samples/auth/keys/create-422.json +0 -34
- data/samples/auth/keys/destroy-204.json +0 -19
- data/samples/auth/keys/destroy-404.json +0 -19
- data/samples/auth/keys/show-200.json +0 -60
- data/samples/auth/keys/show-404.json +0 -19
- data/samples/auth/scm_integrations/_meta.json +0 -14
- data/samples/auth/scm_integrations/all-200.json +0 -41
- data/samples/auth/scm_integrations/create-201.json +0 -41
- data/samples/auth/scm_integrations/create-422.json +0 -36
- data/samples/auth/scm_integrations/destroy-204.json +0 -15
- data/samples/auth/scm_integrations/destroy-404.json +0 -23
- data/samples/auth/scm_integrations/show-200.json +0 -34
- data/samples/auth/scm_integrations/show-404.json +0 -23
- data/samples/auth/tokens/_meta.json +0 -13
- data/samples/auth/tokens/all-200.json +0 -32
- data/samples/auth/tokens/create-201.json +0 -37
- data/samples/auth/tokens/destroy-204.json +0 -19
- data/samples/auth/tokens/destroy-404.json +0 -19
- data/samples/auth/tokens/exchange-200.json +0 -25
- data/samples/auth/tokens/exchange-401.json +0 -24
- data/samples/auth/tokens/renew-200.json +0 -32
- data/samples/auth/tokens/renew-404.json +0 -20
- data/samples/auth/two_factor_auth/_meta.json +0 -10
- data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
- data/samples/auth/two_factor_auth/disable-success.json +0 -29
- data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
- data/samples/auth/two_factor_auth/initiate-success.json +0 -36
- data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
- data/samples/auth/two_factor_auth/status.json +0 -29
- data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
- data/samples/auth/two_factor_auth/validate-success.json +0 -49
- data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
- data/samples/auth/user/_meta.json +0 -10
- data/samples/auth/user/self.json +0 -54
- data/samples/auth/user/stop-free-trial.json +0 -24
- data/samples/auth/user/update-200.json +0 -59
- data/samples/auth/user/update-422.json +0 -33
- data/samples/billing/profile/_meta.json +0 -23
- data/samples/billing/profile/create-201.json +0 -50
- data/samples/billing/profile/create-400.json +0 -27
- data/samples/billing/profile/create-422.json +0 -44
- data/samples/billing/profile/show-200.json +0 -41
- data/samples/billing/profile/show-404.json +0 -22
- data/samples/billing/profile/update-200.json +0 -47
- data/samples/billing/profile/update-422.json +0 -32
- data/samples/regional/addons/_meta.json +0 -22
- data/samples/regional/addons/categories-guest.json +0 -36
- data/samples/regional/addons/categories-logged.json +0 -37
- data/samples/regional/addons/destroy-204.json +0 -19
- data/samples/regional/addons/destroy-404.json +0 -24
- data/samples/regional/addons/find-200.json +0 -48
- data/samples/regional/addons/find-404.json +0 -24
- data/samples/regional/addons/for-200.json +0 -50
- data/samples/regional/addons/providers-guest.json +0 -588
- data/samples/regional/addons/providers-logged.json +0 -705
- data/samples/regional/addons/provision-201.json +0 -58
- data/samples/regional/addons/provision-400.json +0 -29
- data/samples/regional/addons/sso-200.json +0 -49
- data/samples/regional/addons/sso-404.json +0 -24
- data/samples/regional/addons/token-200.json +0 -49
- data/samples/regional/addons/token-404.json +0 -24
- data/samples/regional/addons/update-200.json +0 -58
- data/samples/regional/addons/update-404.json +0 -30
- data/samples/regional/apps/_meta.json +0 -52
- data/samples/regional/apps/all.json +0 -99
- data/samples/regional/apps/create-201.json +0 -66
- data/samples/regional/apps/create-422.json +0 -34
- data/samples/regional/apps/destroy-204.json +0 -19
- data/samples/regional/apps/destroy-404.json +0 -24
- data/samples/regional/apps/destroy-422.json +0 -27
- data/samples/regional/apps/find-200.json +0 -60
- data/samples/regional/apps/find-404.json +0 -24
- data/samples/regional/apps/logs_url.json +0 -62
- data/samples/regional/apps/rename-200.json +0 -65
- data/samples/regional/apps/rename-404.json +0 -29
- data/samples/regional/apps/rename-422.json +0 -33
- data/samples/regional/apps/transfer-200.json +0 -65
- data/samples/regional/apps/transfer-404.json +0 -27
- data/samples/regional/apps/transfer-422.json +0 -34
- data/samples/regional/apps/update-200.json +0 -66
- data/samples/regional/apps/update-stack-404.json +0 -30
- data/samples/regional/autoscalers/_meta.json +0 -27
- data/samples/regional/autoscalers/create-201.json +0 -49
- data/samples/regional/autoscalers/create-500.json +0 -32
- data/samples/regional/autoscalers/destroy-204.json +0 -20
- data/samples/regional/autoscalers/destroy-404.json +0 -25
- data/samples/regional/autoscalers/find-200.json +0 -39
- data/samples/regional/autoscalers/find-404.json +0 -25
- data/samples/regional/autoscalers/for-200.json +0 -41
- data/samples/regional/autoscalers/update-200.json +0 -45
- data/samples/regional/autoscalers/update-404.json +0 -31
- data/samples/regional/autoscalers/update-500.json +0 -30
- data/samples/regional/collaborators/_meta.json +0 -17
- data/samples/regional/collaborators/accept-200.json +0 -60
- data/samples/regional/collaborators/accept-400.json +0 -24
- data/samples/regional/collaborators/accept-404.json +0 -24
- data/samples/regional/collaborators/destroy-204.json +0 -19
- data/samples/regional/collaborators/destroy-404.json +0 -24
- data/samples/regional/collaborators/for-200.json +0 -34
- data/samples/regional/collaborators/invite-201.json +0 -37
- data/samples/regional/collaborators/invite-422.json +0 -34
- data/samples/regional/containers/_meta.json +0 -25
- data/samples/regional/containers/for-200.json +0 -39
- data/samples/regional/containers/restart-202.json +0 -28
- data/samples/regional/containers/restart-422.json +0 -33
- data/samples/regional/containers/scale-202.json +0 -48
- data/samples/regional/containers/scale-422.json +0 -36
- data/samples/regional/containers/sizes-guest.json +0 -115
- data/samples/regional/containers/sizes-logged.json +0 -116
- data/samples/regional/deployments/_meta.json +0 -8
- data/samples/regional/deployments/find-200.json +0 -45
- data/samples/regional/deployments/find-404.json +0 -24
- data/samples/regional/deployments/for-with-paging.json +0 -35
- data/samples/regional/deployments/for-without-pages.json +0 -56
- data/samples/regional/deployments/logs-200.json +0 -22
- data/samples/regional/deployments/logs-404.json +0 -24
- data/samples/regional/domains/_meta.json +0 -21
- data/samples/regional/domains/create-201.json +0 -44
- data/samples/regional/domains/create-422.json +0 -33
- data/samples/regional/domains/destroy-204.json +0 -19
- data/samples/regional/domains/destroy-404.json +0 -24
- data/samples/regional/domains/find-200.json +0 -38
- data/samples/regional/domains/find-404.json +0 -24
- data/samples/regional/domains/for-200.json +0 -40
- data/samples/regional/domains/update-200.json +0 -44
- data/samples/regional/domains/update-404.json +0 -30
- data/samples/regional/domains/update-422.json +0 -33
- data/samples/regional/environment/_meta.json +0 -43
- data/samples/regional/environment/bulk-destroy-204.json +0 -19
- data/samples/regional/environment/bulk-update-200.json +0 -70
- data/samples/regional/environment/create-201.json +0 -36
- data/samples/regional/environment/create-422.json +0 -37
- data/samples/regional/environment/destroy-204.json +0 -19
- data/samples/regional/environment/destroy-404.json +0 -24
- data/samples/regional/environment/for-200.json +0 -31
- data/samples/regional/environment/update-200.json +0 -35
- data/samples/regional/environment/update-404.json +0 -30
- data/samples/regional/events/_meta.json +0 -3
- data/samples/regional/events/all-200.json +0 -619
- data/samples/regional/events/categories-guest.json +0 -66
- data/samples/regional/events/categories-logged.json +0 -67
- data/samples/regional/events/for-200.json +0 -404
- data/samples/regional/events/types-guest.json +0 -288
- data/samples/regional/events/types-logged.json +0 -289
- data/samples/regional/logs/_meta.json +0 -11
- data/samples/regional/logs/archives-200.json +0 -28
- data/samples/regional/logs/get-guest-200.json +0 -18
- data/samples/regional/logs/get-logged-200.json +0 -19
- data/samples/regional/logs/get-with-limit-200.json +0 -18
- data/samples/regional/metrics/_meta.json +0 -15
- data/samples/regional/metrics/for-invalid-400.json +0 -23
- data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
- data/samples/regional/metrics/for-valid-router-404.json +0 -23
- data/samples/regional/metrics/types-guest.json +0 -66
- data/samples/regional/metrics/types-logged.json +0 -67
- data/samples/regional/notifiers/_meta.json +0 -23
- data/samples/regional/notifiers/create-201.json +0 -55
- data/samples/regional/notifiers/create-404.json +0 -30
- data/samples/regional/notifiers/create-422.json +0 -36
- data/samples/regional/notifiers/destroy-204.json +0 -19
- data/samples/regional/notifiers/destroy-404.json +0 -24
- data/samples/regional/notifiers/find-200.json +0 -47
- data/samples/regional/notifiers/find-404.json +0 -24
- data/samples/regional/notifiers/for-200.json +0 -49
- data/samples/regional/notifiers/platforms-guest.json +0 -184
- data/samples/regional/notifiers/platforms-logged.json +0 -185
- data/samples/regional/notifiers/test-200.json +0 -22
- data/samples/regional/notifiers/test-404.json +0 -25
- data/samples/regional/notifiers/update-200.json +0 -53
- data/samples/regional/operations/_meta.json +0 -5
- data/samples/regional/operations/find-200.json +0 -31
- data/samples/regional/operations/find-404.json +0 -24
- data/samples/regional/scm_repo_links/_meta.json +0 -22
- data/samples/regional/scm_repo_links/create-201.json +0 -54
- data/samples/regional/scm_repo_links/destroy-204.json +0 -15
- data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
- data/samples/regional/scm_repo_links/show-200.json +0 -43
- data/samples/regional/scm_repo_links/update-200.json +0 -50
- data/samples/regional_database/backups/_meta.json +0 -4
- data/samples/regional_database/backups/archive-200.json +0 -24
- data/samples/regional_database/backups/archive-400.json +0 -24
- data/samples/regional_database/backups/create-201.json +0 -32
- data/samples/regional_database/backups/create-400.json +0 -24
- data/samples/regional_database/backups/for-200.json +0 -52
- data/samples/regional_database/backups/for-400.json +0 -24
- data/samples/regional_database/databases/_meta.json +0 -3
- data/samples/regional_database/databases/find-200.json +0 -47
- data/samples/regional_database/databases/find-400.json +0 -24
- data/samples/regional_database/databases/upgrade-202.json +0 -39
- data/samples/regional_database/databases/upgrade-400.json +0 -24
@@ -1,619 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/events",
|
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:57:47 GMT",
|
13
|
-
"Etag": "W/\"2563d2e694059cfe01cf05db9b34ff6e\"",
|
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
|
-
"events": [
|
22
|
-
{
|
23
|
-
"id": "5ed10de6884fef000f5e502a",
|
24
|
-
"created_at": "2020-05-29T13:28:06.846Z",
|
25
|
-
"type": "scale",
|
26
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1",
|
27
|
-
"app_name": "example-running-application",
|
28
|
-
"user": {
|
29
|
-
"username": "example-username",
|
30
|
-
"email": "example@null.scalingo.com",
|
31
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
32
|
-
},
|
33
|
-
"type_data": {
|
34
|
-
"previous_containers": {
|
35
|
-
"web": "3:S",
|
36
|
-
"clock": "0:M"
|
37
|
-
},
|
38
|
-
"containers": {
|
39
|
-
"web": "1:S",
|
40
|
-
"clock": "0:M"
|
41
|
-
}
|
42
|
-
}
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"id": "5ed10ddcf112e2000f9f93e3",
|
46
|
-
"created_at": "2020-05-29T13:27:56.095Z",
|
47
|
-
"type": "restart",
|
48
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1",
|
49
|
-
"app_name": "example-running-application",
|
50
|
-
"user": {
|
51
|
-
"username": "example-username",
|
52
|
-
"email": "example@null.scalingo.com",
|
53
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
54
|
-
},
|
55
|
-
"type_data": {
|
56
|
-
"scope": [
|
57
|
-
"web"
|
58
|
-
]
|
59
|
-
}
|
60
|
-
},
|
61
|
-
{
|
62
|
-
"id": "5ed10dd1f112e2000f9f93e2",
|
63
|
-
"created_at": "2020-05-29T13:27:45.574Z",
|
64
|
-
"type": "scale",
|
65
|
-
"app_id": "5ed0fe5d884fef000f5e4fd1",
|
66
|
-
"app_name": "example-running-application",
|
67
|
-
"user": {
|
68
|
-
"username": "example-username",
|
69
|
-
"email": "example@null.scalingo.com",
|
70
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
71
|
-
},
|
72
|
-
"type_data": {
|
73
|
-
"previous_containers": {
|
74
|
-
"web": "1:S",
|
75
|
-
"clock": "0:M"
|
76
|
-
},
|
77
|
-
"containers": {
|
78
|
-
"web": "3:S",
|
79
|
-
"clock": "0:M"
|
80
|
-
}
|
81
|
-
}
|
82
|
-
},
|
83
|
-
{
|
84
|
-
"id": "5ed10d77884fef000f5e5028",
|
85
|
-
"created_at": "2020-05-29T13:26:15.590Z",
|
86
|
-
"type": "delete_app",
|
87
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
88
|
-
"app_name": "some-example-app",
|
89
|
-
"user": {
|
90
|
-
"username": "example-username",
|
91
|
-
"email": "example@null.scalingo.com",
|
92
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
93
|
-
},
|
94
|
-
"type_data": {
|
95
|
-
}
|
96
|
-
},
|
97
|
-
{
|
98
|
-
"id": "5ed10d76f112e2000f9f93e0",
|
99
|
-
"created_at": "2020-05-29T13:26:14.505Z",
|
100
|
-
"type": "edit_variables",
|
101
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
102
|
-
"app_name": "some-example-app",
|
103
|
-
"user": {
|
104
|
-
"username": "example-username",
|
105
|
-
"email": "example@null.scalingo.com",
|
106
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
107
|
-
},
|
108
|
-
"type_data": {
|
109
|
-
"new_vars": null,
|
110
|
-
"updated_vars": null,
|
111
|
-
"deleted_vars": [
|
112
|
-
{
|
113
|
-
"name": "name1",
|
114
|
-
"value": "value1"
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"name": "name2",
|
118
|
-
"value": "value2"
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"name": "name3",
|
122
|
-
"value": "value3"
|
123
|
-
},
|
124
|
-
{
|
125
|
-
"name": "name4",
|
126
|
-
"value": "value4"
|
127
|
-
}
|
128
|
-
]
|
129
|
-
}
|
130
|
-
},
|
131
|
-
{
|
132
|
-
"id": "5ed10d76884fef000f5e5027",
|
133
|
-
"created_at": "2020-05-29T13:26:14.171Z",
|
134
|
-
"type": "delete_variable",
|
135
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
136
|
-
"app_name": "some-example-app",
|
137
|
-
"user": {
|
138
|
-
"username": "example-username",
|
139
|
-
"email": "example@null.scalingo.com",
|
140
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
141
|
-
},
|
142
|
-
"type_data": {
|
143
|
-
"name": "name",
|
144
|
-
"value": "newvalue"
|
145
|
-
}
|
146
|
-
},
|
147
|
-
{
|
148
|
-
"id": "5ed10d75f112e2000f9f93df",
|
149
|
-
"created_at": "2020-05-29T13:26:13.813Z",
|
150
|
-
"type": "edit_variables",
|
151
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
152
|
-
"app_name": "some-example-app",
|
153
|
-
"user": {
|
154
|
-
"username": "example-username",
|
155
|
-
"email": "example@null.scalingo.com",
|
156
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
157
|
-
},
|
158
|
-
"type_data": {
|
159
|
-
"new_vars": [
|
160
|
-
{
|
161
|
-
"name": "name1",
|
162
|
-
"value": "value1"
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"name": "name2",
|
166
|
-
"value": "value2"
|
167
|
-
},
|
168
|
-
{
|
169
|
-
"name": "name3",
|
170
|
-
"value": "value3"
|
171
|
-
},
|
172
|
-
{
|
173
|
-
"name": "name4",
|
174
|
-
"value": "value4"
|
175
|
-
}
|
176
|
-
],
|
177
|
-
"updated_vars": [
|
178
|
-
|
179
|
-
],
|
180
|
-
"deleted_vars": null
|
181
|
-
}
|
182
|
-
},
|
183
|
-
{
|
184
|
-
"id": "5ed10d75f112e2000f9f93da",
|
185
|
-
"created_at": "2020-05-29T13:26:13.443Z",
|
186
|
-
"type": "edit_variable",
|
187
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
188
|
-
"app_name": "some-example-app",
|
189
|
-
"user": {
|
190
|
-
"username": "example-username",
|
191
|
-
"email": "example@null.scalingo.com",
|
192
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
193
|
-
},
|
194
|
-
"type_data": {
|
195
|
-
"addon_name": null,
|
196
|
-
"name": "name",
|
197
|
-
"old_value": "value",
|
198
|
-
"value": "newvalue"
|
199
|
-
}
|
200
|
-
},
|
201
|
-
{
|
202
|
-
"id": "5ed10d74f112e2000f9f93d9",
|
203
|
-
"created_at": "2020-05-29T13:26:12.808Z",
|
204
|
-
"type": "new_variable",
|
205
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
206
|
-
"app_name": "some-example-app",
|
207
|
-
"user": {
|
208
|
-
"username": "example-username",
|
209
|
-
"email": "example@null.scalingo.com",
|
210
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
211
|
-
},
|
212
|
-
"type_data": {
|
213
|
-
"name": "name",
|
214
|
-
"value": "value"
|
215
|
-
}
|
216
|
-
},
|
217
|
-
{
|
218
|
-
"id": "5ed10d74884fef000f5e5025",
|
219
|
-
"created_at": "2020-05-29T13:26:12.084Z",
|
220
|
-
"type": "new_app",
|
221
|
-
"app_id": "5ed10d73884fef000f5e5024",
|
222
|
-
"app_name": "some-example-app",
|
223
|
-
"user": {
|
224
|
-
"username": "example-username",
|
225
|
-
"email": "example@null.scalingo.com",
|
226
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
227
|
-
},
|
228
|
-
"type_data": {
|
229
|
-
"git_source": null
|
230
|
-
}
|
231
|
-
},
|
232
|
-
{
|
233
|
-
"id": "5ed10d5df112e2000f9f93d7",
|
234
|
-
"created_at": "2020-05-29T13:25:49.511Z",
|
235
|
-
"type": "delete_app",
|
236
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
237
|
-
"app_name": "some-example-app",
|
238
|
-
"user": {
|
239
|
-
"username": "example-username",
|
240
|
-
"email": "example@null.scalingo.com",
|
241
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
242
|
-
},
|
243
|
-
"type_data": {
|
244
|
-
}
|
245
|
-
},
|
246
|
-
{
|
247
|
-
"id": "5ed10d5c884fef000f5e5023",
|
248
|
-
"created_at": "2020-05-29T13:25:48.497Z",
|
249
|
-
"type": "edit_variables",
|
250
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
251
|
-
"app_name": "some-example-app",
|
252
|
-
"user": {
|
253
|
-
"username": "example-username",
|
254
|
-
"email": "example@null.scalingo.com",
|
255
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
256
|
-
},
|
257
|
-
"type_data": {
|
258
|
-
"new_vars": null,
|
259
|
-
"updated_vars": null,
|
260
|
-
"deleted_vars": [
|
261
|
-
{
|
262
|
-
"name": "name1",
|
263
|
-
"value": "value1"
|
264
|
-
},
|
265
|
-
{
|
266
|
-
"name": "name2",
|
267
|
-
"value": "value2"
|
268
|
-
},
|
269
|
-
{
|
270
|
-
"name": "name3",
|
271
|
-
"value": "value3"
|
272
|
-
},
|
273
|
-
{
|
274
|
-
"name": "name4",
|
275
|
-
"value": "value4"
|
276
|
-
}
|
277
|
-
]
|
278
|
-
}
|
279
|
-
},
|
280
|
-
{
|
281
|
-
"id": "5ed10d5c884fef000f5e5022",
|
282
|
-
"created_at": "2020-05-29T13:25:48.196Z",
|
283
|
-
"type": "delete_variable",
|
284
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
285
|
-
"app_name": "some-example-app",
|
286
|
-
"user": {
|
287
|
-
"username": "example-username",
|
288
|
-
"email": "example@null.scalingo.com",
|
289
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
290
|
-
},
|
291
|
-
"type_data": {
|
292
|
-
"name": "name",
|
293
|
-
"value": "newvalue"
|
294
|
-
}
|
295
|
-
},
|
296
|
-
{
|
297
|
-
"id": "5ed10d5bf112e2000f9f93d6",
|
298
|
-
"created_at": "2020-05-29T13:25:47.807Z",
|
299
|
-
"type": "edit_variables",
|
300
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
301
|
-
"app_name": "some-example-app",
|
302
|
-
"user": {
|
303
|
-
"username": "example-username",
|
304
|
-
"email": "example@null.scalingo.com",
|
305
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
306
|
-
},
|
307
|
-
"type_data": {
|
308
|
-
"new_vars": [
|
309
|
-
{
|
310
|
-
"name": "name1",
|
311
|
-
"value": "value1"
|
312
|
-
},
|
313
|
-
{
|
314
|
-
"name": "name2",
|
315
|
-
"value": "value2"
|
316
|
-
},
|
317
|
-
{
|
318
|
-
"name": "name3",
|
319
|
-
"value": "value3"
|
320
|
-
},
|
321
|
-
{
|
322
|
-
"name": "name4",
|
323
|
-
"value": "value4"
|
324
|
-
}
|
325
|
-
],
|
326
|
-
"updated_vars": [
|
327
|
-
|
328
|
-
],
|
329
|
-
"deleted_vars": null
|
330
|
-
}
|
331
|
-
},
|
332
|
-
{
|
333
|
-
"id": "5ed10d5b884fef000f5e5021",
|
334
|
-
"created_at": "2020-05-29T13:25:47.325Z",
|
335
|
-
"type": "edit_variable",
|
336
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
337
|
-
"app_name": "some-example-app",
|
338
|
-
"user": {
|
339
|
-
"username": "example-username",
|
340
|
-
"email": "example@null.scalingo.com",
|
341
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
342
|
-
},
|
343
|
-
"type_data": {
|
344
|
-
"addon_name": null,
|
345
|
-
"name": "name",
|
346
|
-
"old_value": "value",
|
347
|
-
"value": "newvalue"
|
348
|
-
}
|
349
|
-
},
|
350
|
-
{
|
351
|
-
"id": "5ed10d5af112e2000f9f93d1",
|
352
|
-
"created_at": "2020-05-29T13:25:46.699Z",
|
353
|
-
"type": "new_variable",
|
354
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
355
|
-
"app_name": "some-example-app",
|
356
|
-
"user": {
|
357
|
-
"username": "example-username",
|
358
|
-
"email": "example@null.scalingo.com",
|
359
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
360
|
-
},
|
361
|
-
"type_data": {
|
362
|
-
"name": "name",
|
363
|
-
"value": "value"
|
364
|
-
}
|
365
|
-
},
|
366
|
-
{
|
367
|
-
"id": "5ed10d59884fef000f5e501f",
|
368
|
-
"created_at": "2020-05-29T13:25:45.988Z",
|
369
|
-
"type": "new_app",
|
370
|
-
"app_id": "5ed10d59884fef000f5e501e",
|
371
|
-
"app_name": "some-example-app",
|
372
|
-
"user": {
|
373
|
-
"username": "example-username",
|
374
|
-
"email": "example@null.scalingo.com",
|
375
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
376
|
-
},
|
377
|
-
"type_data": {
|
378
|
-
"git_source": null
|
379
|
-
}
|
380
|
-
},
|
381
|
-
{
|
382
|
-
"id": "5ed10d56f112e2000f9f93cf",
|
383
|
-
"created_at": "2020-05-29T13:25:42.148Z",
|
384
|
-
"type": "delete_app",
|
385
|
-
"app_id": "5ed10cee884fef000f5e5019",
|
386
|
-
"app_name": "some-example-app",
|
387
|
-
"user": {
|
388
|
-
"username": "example-username",
|
389
|
-
"email": "example@null.scalingo.com",
|
390
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
391
|
-
},
|
392
|
-
"type_data": {
|
393
|
-
}
|
394
|
-
},
|
395
|
-
{
|
396
|
-
"id": "5ed10d55884fef000f5e501d",
|
397
|
-
"created_at": "2020-05-29T13:25:41.247Z",
|
398
|
-
"type": "delete_variable",
|
399
|
-
"app_id": "5ed10cee884fef000f5e5019",
|
400
|
-
"app_name": "some-example-app",
|
401
|
-
"user": {
|
402
|
-
"username": "example-username",
|
403
|
-
"email": "example@null.scalingo.com",
|
404
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
405
|
-
},
|
406
|
-
"type_data": {
|
407
|
-
"name": "name",
|
408
|
-
"value": "newvalue"
|
409
|
-
}
|
410
|
-
},
|
411
|
-
{
|
412
|
-
"id": "5ed10cf0f112e2000f9f93ce",
|
413
|
-
"created_at": "2020-05-29T13:24:00.992Z",
|
414
|
-
"type": "edit_variables",
|
415
|
-
"app_id": "5ed10cee884fef000f5e5019",
|
416
|
-
"app_name": "some-example-app",
|
417
|
-
"user": {
|
418
|
-
"username": "example-username",
|
419
|
-
"email": "example@null.scalingo.com",
|
420
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
421
|
-
},
|
422
|
-
"type_data": {
|
423
|
-
"new_vars": [
|
424
|
-
{
|
425
|
-
"name": "name1",
|
426
|
-
"value": "value1"
|
427
|
-
},
|
428
|
-
{
|
429
|
-
"name": "name2",
|
430
|
-
"value": "value2"
|
431
|
-
},
|
432
|
-
{
|
433
|
-
"name": "name3",
|
434
|
-
"value": "value3"
|
435
|
-
},
|
436
|
-
{
|
437
|
-
"name": "name4",
|
438
|
-
"value": "value4"
|
439
|
-
}
|
440
|
-
],
|
441
|
-
"updated_vars": [
|
442
|
-
|
443
|
-
],
|
444
|
-
"deleted_vars": null
|
445
|
-
}
|
446
|
-
},
|
447
|
-
{
|
448
|
-
"id": "5ed10cf0884fef000f5e501c",
|
449
|
-
"created_at": "2020-05-29T13:24:00.516Z",
|
450
|
-
"type": "edit_variable",
|
451
|
-
"app_id": "5ed10cee884fef000f5e5019",
|
452
|
-
"app_name": "some-example-app",
|
453
|
-
"user": {
|
454
|
-
"username": "example-username",
|
455
|
-
"email": "example@null.scalingo.com",
|
456
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
457
|
-
},
|
458
|
-
"type_data": {
|
459
|
-
"addon_name": null,
|
460
|
-
"name": "name",
|
461
|
-
"old_value": "value",
|
462
|
-
"value": "newvalue"
|
463
|
-
}
|
464
|
-
},
|
465
|
-
{
|
466
|
-
"id": "5ed10ceff112e2000f9f93c9",
|
467
|
-
"created_at": "2020-05-29T13:23:59.891Z",
|
468
|
-
"type": "new_variable",
|
469
|
-
"app_id": "5ed10cee884fef000f5e5019",
|
470
|
-
"app_name": "some-example-app",
|
471
|
-
"user": {
|
472
|
-
"username": "example-username",
|
473
|
-
"email": "example@null.scalingo.com",
|
474
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
475
|
-
},
|
476
|
-
"type_data": {
|
477
|
-
"name": "name",
|
478
|
-
"value": "value"
|
479
|
-
}
|
480
|
-
},
|
481
|
-
{
|
482
|
-
"id": "5ed10cef884fef000f5e501a",
|
483
|
-
"created_at": "2020-05-29T13:23:59.150Z",
|
484
|
-
"type": "new_app",
|
485
|
-
"app_id": "5ed10cee884fef000f5e5019",
|
486
|
-
"app_name": "some-example-app",
|
487
|
-
"user": {
|
488
|
-
"username": "example-username",
|
489
|
-
"email": "example@null.scalingo.com",
|
490
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
491
|
-
},
|
492
|
-
"type_data": {
|
493
|
-
"git_source": null
|
494
|
-
}
|
495
|
-
},
|
496
|
-
{
|
497
|
-
"id": "5ed10bd4884fef000f5e5018",
|
498
|
-
"created_at": "2020-05-29T13:19:16.508Z",
|
499
|
-
"type": "delete_app",
|
500
|
-
"app_id": "5ed10bd1884fef000f5e5012",
|
501
|
-
"app_name": "some-example-app",
|
502
|
-
"user": {
|
503
|
-
"username": "example-username",
|
504
|
-
"email": "example@null.scalingo.com",
|
505
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
506
|
-
},
|
507
|
-
"type_data": {
|
508
|
-
}
|
509
|
-
},
|
510
|
-
{
|
511
|
-
"id": "5ed10bd3f112e2000f9f93c7",
|
512
|
-
"created_at": "2020-05-29T13:19:15.599Z",
|
513
|
-
"type": "delete_variable",
|
514
|
-
"app_id": "5ed10bd1884fef000f5e5012",
|
515
|
-
"app_name": "some-example-app",
|
516
|
-
"user": {
|
517
|
-
"username": "example-username",
|
518
|
-
"email": "example@null.scalingo.com",
|
519
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
520
|
-
},
|
521
|
-
"type_data": {
|
522
|
-
"name": "name",
|
523
|
-
"value": "value"
|
524
|
-
}
|
525
|
-
},
|
526
|
-
{
|
527
|
-
"id": "5ed10bd3884fef000f5e5017",
|
528
|
-
"created_at": "2020-05-29T13:19:15.118Z",
|
529
|
-
"type": "edit_variable",
|
530
|
-
"app_id": "5ed10bd1884fef000f5e5012",
|
531
|
-
"app_name": "some-example-app",
|
532
|
-
"user": {
|
533
|
-
"username": "example-username",
|
534
|
-
"email": "example@null.scalingo.com",
|
535
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
536
|
-
},
|
537
|
-
"type_data": {
|
538
|
-
"addon_name": null,
|
539
|
-
"name": "name",
|
540
|
-
"old_value": "value",
|
541
|
-
"value": "value"
|
542
|
-
}
|
543
|
-
},
|
544
|
-
{
|
545
|
-
"id": "5ed10bd2f112e2000f9f93c6",
|
546
|
-
"created_at": "2020-05-29T13:19:14.576Z",
|
547
|
-
"type": "edit_variable",
|
548
|
-
"app_id": "5ed10bd1884fef000f5e5012",
|
549
|
-
"app_name": "some-example-app",
|
550
|
-
"user": {
|
551
|
-
"username": "example-username",
|
552
|
-
"email": "example@null.scalingo.com",
|
553
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
554
|
-
},
|
555
|
-
"type_data": {
|
556
|
-
"addon_name": null,
|
557
|
-
"name": "name",
|
558
|
-
"old_value": "value",
|
559
|
-
"value": "value"
|
560
|
-
}
|
561
|
-
},
|
562
|
-
{
|
563
|
-
"id": "5ed10bd2884fef000f5e5016",
|
564
|
-
"created_at": "2020-05-29T13:19:14.178Z",
|
565
|
-
"type": "new_variable",
|
566
|
-
"app_id": "5ed10bd1884fef000f5e5012",
|
567
|
-
"app_name": "some-example-app",
|
568
|
-
"user": {
|
569
|
-
"username": "example-username",
|
570
|
-
"email": "example@null.scalingo.com",
|
571
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
572
|
-
},
|
573
|
-
"type_data": {
|
574
|
-
"name": "name",
|
575
|
-
"value": "value"
|
576
|
-
}
|
577
|
-
},
|
578
|
-
{
|
579
|
-
"id": "5ed10bd1884fef000f5e5013",
|
580
|
-
"created_at": "2020-05-29T13:19:13.498Z",
|
581
|
-
"type": "new_app",
|
582
|
-
"app_id": "5ed10bd1884fef000f5e5012",
|
583
|
-
"app_name": "some-example-app",
|
584
|
-
"user": {
|
585
|
-
"username": "example-username",
|
586
|
-
"email": "example@null.scalingo.com",
|
587
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
588
|
-
},
|
589
|
-
"type_data": {
|
590
|
-
"git_source": null
|
591
|
-
}
|
592
|
-
},
|
593
|
-
{
|
594
|
-
"id": "5ed10bb6f112e2000f9f93c5",
|
595
|
-
"created_at": "2020-05-29T13:18:46.694Z",
|
596
|
-
"type": "delete_app",
|
597
|
-
"app_id": "5ed10bb4884fef000f5e500e",
|
598
|
-
"app_name": "some-example-app",
|
599
|
-
"user": {
|
600
|
-
"username": "example-username",
|
601
|
-
"email": "example@null.scalingo.com",
|
602
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5"
|
603
|
-
},
|
604
|
-
"type_data": {
|
605
|
-
}
|
606
|
-
}
|
607
|
-
],
|
608
|
-
"meta": {
|
609
|
-
"pagination": {
|
610
|
-
"current_page": 1,
|
611
|
-
"next_page": 2,
|
612
|
-
"previous_page": null,
|
613
|
-
"total_pages": 16,
|
614
|
-
"total_count": 455
|
615
|
-
}
|
616
|
-
}
|
617
|
-
}
|
618
|
-
}
|
619
|
-
}
|
@@ -1,66 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/event_categories",
|
3
|
-
"method": "get",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
}
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"status": 200,
|
10
|
-
"headers": {
|
11
|
-
"Date": "Fri, 29 May 2020 13:57:46 GMT",
|
12
|
-
"Etag": "W/\"682d29b34798d9860d5d6e157fc58ac7\"",
|
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
|
-
"event_categories": [
|
21
|
-
{
|
22
|
-
"id": "595cf85d6bb8f100167429ca",
|
23
|
-
"name": "app_operations",
|
24
|
-
"display_name": "App operations",
|
25
|
-
"position": 1
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"id": "595cf85d6bb8f100167429cb",
|
29
|
-
"name": "addons",
|
30
|
-
"display_name": "Addons",
|
31
|
-
"position": 2
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"id": "595cf85d6bb8f100167429cc",
|
35
|
-
"name": "collaborators",
|
36
|
-
"display_name": "Collaborators",
|
37
|
-
"position": 3
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"id": "595cf85d6bb8f100167429cd",
|
41
|
-
"name": "domains",
|
42
|
-
"display_name": "Domains",
|
43
|
-
"position": 4
|
44
|
-
},
|
45
|
-
{
|
46
|
-
"id": "595cf85d6bb8f100167429ce",
|
47
|
-
"name": "notifiers",
|
48
|
-
"display_name": "Notifiers",
|
49
|
-
"position": 5
|
50
|
-
},
|
51
|
-
{
|
52
|
-
"id": "595cf85d6bb8f100167429cf",
|
53
|
-
"name": "variables",
|
54
|
-
"display_name": "Variables",
|
55
|
-
"position": 6
|
56
|
-
},
|
57
|
-
{
|
58
|
-
"id": "595cf85d6bb8f100167429d0",
|
59
|
-
"name": "github",
|
60
|
-
"display_name": "GitHub",
|
61
|
-
"position": 7
|
62
|
-
}
|
63
|
-
]
|
64
|
-
}
|
65
|
-
}
|
66
|
-
}
|