scalingo 3.0.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/.rubocop.yml +16 -0
- data/.travis.yml +24 -0
- data/CHANGELOG.md +29 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +110 -0
- data/LICENSE.txt +22 -0
- data/README.md +147 -0
- data/Rakefile +6 -0
- data/bin/console +12 -0
- data/bin/setup +8 -0
- data/lib/scalingo.rb +2 -0
- data/lib/scalingo/api/client.rb +79 -0
- data/lib/scalingo/api/endpoint.rb +23 -0
- data/lib/scalingo/api/response.rb +71 -0
- data/lib/scalingo/auth.rb +21 -0
- data/lib/scalingo/auth/keys.rb +56 -0
- data/lib/scalingo/auth/scm_integrations.rb +57 -0
- data/lib/scalingo/auth/tokens.rb +78 -0
- data/lib/scalingo/auth/two_factor_auth.rb +61 -0
- data/lib/scalingo/auth/user.rb +31 -0
- data/lib/scalingo/bearer_token.rb +20 -0
- data/lib/scalingo/client.rb +105 -0
- data/lib/scalingo/config.rb +38 -0
- data/lib/scalingo/error/expired_token.rb +6 -0
- data/lib/scalingo/error/unauthenticated.rb +6 -0
- data/lib/scalingo/errors.rb +2 -0
- data/lib/scalingo/regional.rb +35 -0
- data/lib/scalingo/regional/addons.rb +109 -0
- data/lib/scalingo/regional/apps.rb +109 -0
- data/lib/scalingo/regional/collaborators.rb +57 -0
- data/lib/scalingo/regional/containers.rb +57 -0
- data/lib/scalingo/regional/deployments.rb +44 -0
- data/lib/scalingo/regional/domains.rb +70 -0
- data/lib/scalingo/regional/environment.rb +83 -0
- data/lib/scalingo/regional/events.rb +55 -0
- data/lib/scalingo/regional/logs.rb +38 -0
- data/lib/scalingo/regional/metrics.rb +41 -0
- data/lib/scalingo/regional/notifiers.rb +96 -0
- data/lib/scalingo/regional/operations.rb +18 -0
- data/lib/scalingo/regional/scm_repo_links.rb +109 -0
- data/lib/scalingo/version.rb +3 -0
- data/samples/auth/keys/_meta.json +13 -0
- data/samples/auth/keys/all-200.json +62 -0
- data/samples/auth/keys/create-201.json +67 -0
- data/samples/auth/keys/create-422.json +34 -0
- data/samples/auth/keys/destroy-204.json +19 -0
- data/samples/auth/keys/destroy-404.json +19 -0
- data/samples/auth/keys/show-200.json +60 -0
- data/samples/auth/keys/show-404.json +19 -0
- data/samples/auth/scm_integrations/_meta.json +14 -0
- data/samples/auth/scm_integrations/all-200.json +41 -0
- data/samples/auth/scm_integrations/create-201.json +41 -0
- data/samples/auth/scm_integrations/create-422.json +36 -0
- data/samples/auth/scm_integrations/destroy-204.json +15 -0
- data/samples/auth/scm_integrations/destroy-404.json +23 -0
- data/samples/auth/scm_integrations/show-200.json +34 -0
- data/samples/auth/scm_integrations/show-404.json +23 -0
- data/samples/auth/tokens/_meta.json +13 -0
- data/samples/auth/tokens/all-200.json +32 -0
- data/samples/auth/tokens/create-201.json +37 -0
- data/samples/auth/tokens/destroy-204.json +19 -0
- data/samples/auth/tokens/destroy-404.json +19 -0
- data/samples/auth/tokens/exchange-200.json +25 -0
- data/samples/auth/tokens/exchange-401.json +24 -0
- data/samples/auth/tokens/renew-200.json +32 -0
- data/samples/auth/tokens/renew-404.json +20 -0
- data/samples/auth/two_factor_auth/_meta.json +10 -0
- data/samples/auth/two_factor_auth/disable-not-initiated.json +23 -0
- data/samples/auth/two_factor_auth/disable-success.json +29 -0
- data/samples/auth/two_factor_auth/initiate-already-enabled.json +29 -0
- data/samples/auth/two_factor_auth/initiate-success.json +36 -0
- data/samples/auth/two_factor_auth/initiate-wrong-provider.json +29 -0
- data/samples/auth/two_factor_auth/status.json +29 -0
- data/samples/auth/two_factor_auth/validate-not-initiated.json +29 -0
- data/samples/auth/two_factor_auth/validate-success.json +49 -0
- data/samples/auth/two_factor_auth/validate-wrong.json +29 -0
- data/samples/auth/user/_meta.json +10 -0
- data/samples/auth/user/self.json +54 -0
- data/samples/auth/user/update-200.json +59 -0
- data/samples/auth/user/update-422.json +33 -0
- data/samples/regional/addons/_meta.json +22 -0
- data/samples/regional/addons/categories-guest.json +36 -0
- data/samples/regional/addons/categories-logged.json +37 -0
- data/samples/regional/addons/destroy-204.json +19 -0
- data/samples/regional/addons/destroy-404.json +24 -0
- data/samples/regional/addons/find-200.json +48 -0
- data/samples/regional/addons/find-404.json +24 -0
- data/samples/regional/addons/for-200.json +50 -0
- data/samples/regional/addons/providers-guest.json +588 -0
- data/samples/regional/addons/providers-logged.json +705 -0
- data/samples/regional/addons/provision-201.json +58 -0
- data/samples/regional/addons/provision-400.json +29 -0
- data/samples/regional/addons/sso-200.json +49 -0
- data/samples/regional/addons/sso-404.json +24 -0
- data/samples/regional/addons/update-200.json +58 -0
- data/samples/regional/addons/update-404.json +30 -0
- data/samples/regional/apps/_meta.json +52 -0
- data/samples/regional/apps/all.json +99 -0
- data/samples/regional/apps/create-201.json +66 -0
- data/samples/regional/apps/create-422.json +34 -0
- data/samples/regional/apps/destroy-204.json +19 -0
- data/samples/regional/apps/destroy-404.json +24 -0
- data/samples/regional/apps/destroy-422.json +27 -0
- data/samples/regional/apps/find-200.json +60 -0
- data/samples/regional/apps/find-404.json +24 -0
- data/samples/regional/apps/logs_url.json +62 -0
- data/samples/regional/apps/rename-200.json +65 -0
- data/samples/regional/apps/rename-404.json +29 -0
- data/samples/regional/apps/rename-422.json +33 -0
- data/samples/regional/apps/transfer-200.json +65 -0
- data/samples/regional/apps/transfer-404.json +27 -0
- data/samples/regional/apps/transfer-422.json +34 -0
- data/samples/regional/apps/update-200.json +66 -0
- data/samples/regional/apps/update-stack-404.json +30 -0
- data/samples/regional/collaborators/_meta.json +17 -0
- data/samples/regional/collaborators/accept-200.json +60 -0
- data/samples/regional/collaborators/accept-400.json +24 -0
- data/samples/regional/collaborators/accept-404.json +24 -0
- data/samples/regional/collaborators/destroy-204.json +19 -0
- data/samples/regional/collaborators/destroy-404.json +24 -0
- data/samples/regional/collaborators/for-200.json +34 -0
- data/samples/regional/collaborators/invite-201.json +37 -0
- data/samples/regional/collaborators/invite-422.json +34 -0
- data/samples/regional/containers/_meta.json +25 -0
- data/samples/regional/containers/for-200.json +39 -0
- data/samples/regional/containers/restart-202.json +28 -0
- data/samples/regional/containers/restart-422.json +33 -0
- data/samples/regional/containers/scale-202.json +48 -0
- data/samples/regional/containers/scale-422.json +36 -0
- data/samples/regional/containers/sizes-guest.json +115 -0
- data/samples/regional/containers/sizes-logged.json +116 -0
- data/samples/regional/deployments/_meta.json +8 -0
- data/samples/regional/deployments/find-200.json +45 -0
- data/samples/regional/deployments/find-404.json +24 -0
- data/samples/regional/deployments/for-with-paging.json +35 -0
- data/samples/regional/deployments/for-without-pages.json +56 -0
- data/samples/regional/deployments/logs-200.json +22 -0
- data/samples/regional/deployments/logs-404.json +24 -0
- data/samples/regional/domains/_meta.json +21 -0
- data/samples/regional/domains/create-201.json +44 -0
- data/samples/regional/domains/create-422.json +33 -0
- data/samples/regional/domains/destroy-204.json +19 -0
- data/samples/regional/domains/destroy-404.json +24 -0
- data/samples/regional/domains/find-200.json +38 -0
- data/samples/regional/domains/find-404.json +24 -0
- data/samples/regional/domains/for-200.json +40 -0
- data/samples/regional/domains/update-200.json +44 -0
- data/samples/regional/domains/update-404.json +30 -0
- data/samples/regional/domains/update-422.json +33 -0
- data/samples/regional/environment/_meta.json +43 -0
- data/samples/regional/environment/bulk-destroy-204.json +19 -0
- data/samples/regional/environment/bulk-update-200.json +70 -0
- data/samples/regional/environment/create-201.json +36 -0
- data/samples/regional/environment/create-422.json +37 -0
- data/samples/regional/environment/destroy-204.json +19 -0
- data/samples/regional/environment/destroy-404.json +24 -0
- data/samples/regional/environment/for-200.json +31 -0
- data/samples/regional/environment/update-200.json +35 -0
- data/samples/regional/environment/update-404.json +30 -0
- data/samples/regional/events/_meta.json +3 -0
- data/samples/regional/events/all-200.json +619 -0
- data/samples/regional/events/categories-guest.json +66 -0
- data/samples/regional/events/categories-logged.json +67 -0
- data/samples/regional/events/for-200.json +404 -0
- data/samples/regional/events/types-guest.json +288 -0
- data/samples/regional/events/types-logged.json +289 -0
- data/samples/regional/logs/_meta.json +11 -0
- data/samples/regional/logs/archives-200.json +28 -0
- data/samples/regional/logs/get-guest-200.json +18 -0
- data/samples/regional/logs/get-logged-200.json +19 -0
- data/samples/regional/logs/get-with-limit-200.json +18 -0
- data/samples/regional/metrics/_meta.json +15 -0
- data/samples/regional/metrics/for-invalid-400.json +23 -0
- data/samples/regional/metrics/for-valid-cpu-200.json +747 -0
- data/samples/regional/metrics/for-valid-router-404.json +23 -0
- data/samples/regional/metrics/types-guest.json +66 -0
- data/samples/regional/metrics/types-logged.json +67 -0
- data/samples/regional/notifiers/_meta.json +23 -0
- data/samples/regional/notifiers/create-201.json +55 -0
- data/samples/regional/notifiers/create-404.json +30 -0
- data/samples/regional/notifiers/create-422.json +36 -0
- data/samples/regional/notifiers/destroy-204.json +19 -0
- data/samples/regional/notifiers/destroy-404.json +24 -0
- data/samples/regional/notifiers/find-200.json +47 -0
- data/samples/regional/notifiers/find-404.json +24 -0
- data/samples/regional/notifiers/for-200.json +49 -0
- data/samples/regional/notifiers/platforms-guest.json +184 -0
- data/samples/regional/notifiers/platforms-logged.json +185 -0
- data/samples/regional/notifiers/test-200.json +22 -0
- data/samples/regional/notifiers/test-404.json +25 -0
- data/samples/regional/notifiers/update-200.json +53 -0
- data/samples/regional/operations/_meta.json +5 -0
- data/samples/regional/operations/find-200.json +31 -0
- data/samples/regional/operations/find-404.json +24 -0
- data/samples/regional/scm_repo_links/_meta.json +22 -0
- data/samples/regional/scm_repo_links/create-201.json +54 -0
- data/samples/regional/scm_repo_links/destroy-204.json +15 -0
- data/samples/regional/scm_repo_links/manual-deploy-200.json +32 -0
- data/samples/regional/scm_repo_links/show-200.json +43 -0
- data/samples/regional/scm_repo_links/update-200.json +50 -0
- data/scalingo.gemspec +51 -0
- data/spec/scalingo/auth/keys_spec.rb +58 -0
- data/spec/scalingo/auth/scm_integrations_spec.rb +58 -0
- data/spec/scalingo/auth/tokens_spec.rb +74 -0
- data/spec/scalingo/auth/two_factor_auth_spec.rb +69 -0
- data/spec/scalingo/auth/user_spec.rb +25 -0
- data/spec/scalingo/regional/addons_spec.rb +133 -0
- data/spec/scalingo/regional/apps_spec.rb +137 -0
- data/spec/scalingo/regional/collaborators_spec.rb +69 -0
- data/spec/scalingo/regional/containers_spec.rb +67 -0
- data/spec/scalingo/regional/deployments_spec.rb +45 -0
- data/spec/scalingo/regional/domains_spec.rb +84 -0
- data/spec/scalingo/regional/environment_spec.rb +77 -0
- data/spec/scalingo/regional/events_spec.rb +65 -0
- data/spec/scalingo/regional/logs_spec.rb +39 -0
- data/spec/scalingo/regional/metrics_spec.rb +46 -0
- data/spec/scalingo/regional/notifiers_spec.rb +113 -0
- data/spec/scalingo/regional/operations_spec.rb +19 -0
- data/spec/scalingo/regional/scm_repo_links_spec.rb +48 -0
- metadata +488 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"path": "/scm_integrations/5bb2e877-9e5c-a83f-8e0e-7c75eebf212c",
|
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
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"path": "/scm_integrations/wrong-id",
|
3
|
+
"method": "delete",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 404,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Sat, 30 May 2020 12:26:37 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
|
+
"error": "SCM integration not found"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"path": "/scm_integrations/5bb2e877-9e5c-a83f-8e0e-7c75eebf212c",
|
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_integration": {
|
16
|
+
"id": "5bb2e877-9e5c-a83f-8e0e-7c75eebf212c",
|
17
|
+
"scm_type": "gitlab",
|
18
|
+
"url": "https://gitlab.example2.com",
|
19
|
+
"access_token": "a64fe9744da5e6ce790ca3a9084bd66cf433b24b",
|
20
|
+
"created_at": "2019-08-12T11:59:37.298Z",
|
21
|
+
"uid": "42",
|
22
|
+
"username": "test_user",
|
23
|
+
"avatar_url": "https://secure.gravatar.com/avatar/4d65e90ca34da7a9084b6ce6c?s=80&d=identicon",
|
24
|
+
"email": "test-user@example.com",
|
25
|
+
"profile_url": "https://gitlab.example2.com/test-user",
|
26
|
+
"owner": {
|
27
|
+
"id": "us-88c4e9af-f93c-8284-c67a-fa414d49c5de",
|
28
|
+
"email": "test-user@example.com",
|
29
|
+
"username": "test-user"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"path": "/scm_integrations/wrong-id",
|
3
|
+
"method": "get",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 404,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Sat, 30 May 2020 12:26:36 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
|
+
"error": "SCM integration not found"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{
|
2
|
+
"id": "b0c18b26-2a26-4032-a4d9-245877478bf1",
|
3
|
+
"not_found_id": "wrong-token-id",
|
4
|
+
"exchange": {
|
5
|
+
"invalid": "wrong-token",
|
6
|
+
"valid": "tk-us-UNTgs7Rep5M56UGf9SadYSN-Qqsv1iymenYmHSRXdz2Q6tEB"
|
7
|
+
},
|
8
|
+
"create": {
|
9
|
+
"valid": {
|
10
|
+
"name": "test-token"
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens",
|
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 12:05:28 GMT",
|
13
|
+
"Etag": "W/\"7d82f14401e4d20e890df1fbac5930a6\"",
|
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
|
+
"tokens": [
|
22
|
+
{
|
23
|
+
"id": "3dd547b4-6bfc-489f-a6d7-e14aa088f410",
|
24
|
+
"name": "Sampler",
|
25
|
+
"created_at": "2020-05-13T19:48:39.395Z",
|
26
|
+
"last_used_at": "2020-05-29T12:05:28.524Z",
|
27
|
+
"issued_at": "2020-05-29T11:33:33.891Z"
|
28
|
+
}
|
29
|
+
]
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens",
|
3
|
+
"method": "post",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token",
|
7
|
+
"Content-Type": "application/json"
|
8
|
+
},
|
9
|
+
"json_body": {
|
10
|
+
"token": {
|
11
|
+
"name": "test-token"
|
12
|
+
}
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"response": {
|
16
|
+
"status": 201,
|
17
|
+
"headers": {
|
18
|
+
"Date": "Fri, 29 May 2020 12:05:29 GMT",
|
19
|
+
"Etag": "W/\"3341a1ccae07710b52b713bcb8f67dbf\"",
|
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
|
+
"token": {
|
28
|
+
"id": "b0c18b26-2a26-4032-a4d9-245877478bf1",
|
29
|
+
"name": "test-token",
|
30
|
+
"created_at": "2020-05-29T12:05:29.039Z",
|
31
|
+
"last_used_at": null,
|
32
|
+
"issued_at": "2020-05-29T12:05:29.039Z",
|
33
|
+
"token": "tk-us-0DsVKu4FH6xI11oM92hHwnd2O08U36YOWlA1-MtO21dwpVjz"
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens/b0c18b26-2a26-4032-a4d9-245877478bf1",
|
3
|
+
"method": "delete",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 204,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Fri, 29 May 2020 12:05:30 GMT",
|
13
|
+
"Connection": "keep-alive",
|
14
|
+
"Cache-Control": "no-cache",
|
15
|
+
"Referrer-Policy": "strict-origin-when-cross-origin"
|
16
|
+
},
|
17
|
+
"body": ""
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens/wrong-token-id",
|
3
|
+
"method": "delete",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 404,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Fri, 29 May 2020 12:05:30 GMT",
|
13
|
+
"Content-Type": "text/html; charset=UTF-8",
|
14
|
+
"Transfer-Encoding": "chunked",
|
15
|
+
"Connection": "keep-alive"
|
16
|
+
},
|
17
|
+
"body": "<!DOCTYPE html>\n<html>\n<head>\n <title>The page you were looking for doesn't exist (404)</title>\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <style>\n .rails-default-error-page {\n background-color: #EFEFEF;\n color: #2E2F30;\n text-align: center;\n font-family: arial, sans-serif;\n margin: 0;\n }\n\n .rails-default-error-page div.dialog {\n width: 95%;\n max-width: 33em;\n margin: 4em auto 0;\n }\n\n .rails-default-error-page div.dialog > div {\n border: 1px solid #CCC;\n border-right-color: #999;\n border-left-color: #999;\n border-bottom-color: #BBB;\n border-top: #B00100 solid 4px;\n border-top-left-radius: 9px;\n border-top-right-radius: 9px;\n background-color: white;\n padding: 7px 12% 0;\n box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n }\n\n .rails-default-error-page h1 {\n font-size: 100%;\n color: #730E15;\n line-height: 1.5em;\n }\n\n .rails-default-error-page div.dialog > p {\n margin: 0 0 1em;\n padding: 1em;\n background-color: #F7F7F7;\n border: 1px solid #CCC;\n border-right-color: #999;\n border-left-color: #999;\n border-bottom-color: #999;\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n border-top-color: #DADADA;\n color: #666;\n box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n }\n </style>\n</head>\n\n<body class=\"rails-default-error-page\">\n <!-- This file lives in public/404.html -->\n <div class=\"dialog\">\n <div>\n <h1>The page you were looking for doesn't exist.</h1>\n <p>You may have mistyped the address or the page may have moved.</p>\n </div>\n <p>If you are the application owner check the logs for more information.</p>\n </div>\n</body>\n</html>\n"
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens/exchange",
|
3
|
+
"method": "post",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Basic OnRrLXVzLVVOVGdzN1JlcDVNNTZVR2Y5U2FkWVNOLVFxc3YxaXltZW5ZbUhTUlhkejJRNnRFQg==",
|
7
|
+
"Content-Length": "0"
|
8
|
+
}
|
9
|
+
},
|
10
|
+
"response": {
|
11
|
+
"status": 200,
|
12
|
+
"headers": {
|
13
|
+
"Date": "Fri, 29 May 2020 12:05:28 GMT",
|
14
|
+
"Etag": "W/\"7f68fb676650040b70af4d75b3803592\"",
|
15
|
+
"Content-Type": "application/json; charset=utf-8",
|
16
|
+
"Transfer-Encoding": "chunked",
|
17
|
+
"Connection": "keep-alive",
|
18
|
+
"Cache-Control": "max-age=0, private, must-revalidate",
|
19
|
+
"Referrer-Policy": "strict-origin-when-cross-origin"
|
20
|
+
},
|
21
|
+
"json_body": {
|
22
|
+
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJpc3MiOiJTY2FsaW5nbyIsImlhdCI6MTU5MDc1MzkyOCwidXVpZCI6InVzLTY3NmJiMGMxLTFjYTktNDY4Mi04ZWUxLTI1NzQyMmU5ZWFiNSIsInJuZCI6IjAyYjk0NjBjMDk1ZjgxYWIwY2RiODNiMWUzMDRjZDE1IiwiZXhwIjoxNTkwNzU3NTI4fQ.vAsMo1hdZ2LFILeOlNIHfMlv0rlRK5GX2Ii_JPJbUH-btnOUfrsrHr1KZvEnDh4QVLwRlFHlwVwCU3ROCQoe_Q"
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens/exchange",
|
3
|
+
"method": "post",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Basic Ondyb25nLXRva2Vu",
|
7
|
+
"Content-Length": "0"
|
8
|
+
}
|
9
|
+
},
|
10
|
+
"response": {
|
11
|
+
"status": 401,
|
12
|
+
"headers": {
|
13
|
+
"Date": "Fri, 29 May 2020 12:05:28 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
|
+
"error": "Invalid credentials"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens/b0c18b26-2a26-4032-a4d9-245877478bf1/renew",
|
3
|
+
"method": "patch",
|
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 12:05:29 GMT",
|
14
|
+
"Etag": "W/\"10a925ef481d672b13115d602f6af880\"",
|
15
|
+
"Content-Type": "application/json; charset=utf-8",
|
16
|
+
"Transfer-Encoding": "chunked",
|
17
|
+
"Connection": "keep-alive",
|
18
|
+
"Cache-Control": "max-age=0, private, must-revalidate",
|
19
|
+
"Referrer-Policy": "strict-origin-when-cross-origin"
|
20
|
+
},
|
21
|
+
"json_body": {
|
22
|
+
"token": {
|
23
|
+
"id": "b0c18b26-2a26-4032-a4d9-245877478bf1",
|
24
|
+
"name": "test-token",
|
25
|
+
"created_at": "2020-05-29T12:05:29.039Z",
|
26
|
+
"last_used_at": null,
|
27
|
+
"issued_at": "2020-05-29T12:05:29.599Z",
|
28
|
+
"token": "tk-us-MUAlvyVTirb9mwMXLrJ32gKb7SCwEFmmdL4-2INSgD0HTDRr"
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"path": "/tokens/wrong-token-id/renew",
|
3
|
+
"method": "patch",
|
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 12:05:29 GMT",
|
14
|
+
"Content-Type": "text/html; charset=UTF-8",
|
15
|
+
"Transfer-Encoding": "chunked",
|
16
|
+
"Connection": "keep-alive"
|
17
|
+
},
|
18
|
+
"body": "<!DOCTYPE html>\n<html>\n<head>\n <title>The page you were looking for doesn't exist (404)</title>\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <style>\n .rails-default-error-page {\n background-color: #EFEFEF;\n color: #2E2F30;\n text-align: center;\n font-family: arial, sans-serif;\n margin: 0;\n }\n\n .rails-default-error-page div.dialog {\n width: 95%;\n max-width: 33em;\n margin: 4em auto 0;\n }\n\n .rails-default-error-page div.dialog > div {\n border: 1px solid #CCC;\n border-right-color: #999;\n border-left-color: #999;\n border-bottom-color: #BBB;\n border-top: #B00100 solid 4px;\n border-top-left-radius: 9px;\n border-top-right-radius: 9px;\n background-color: white;\n padding: 7px 12% 0;\n box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n }\n\n .rails-default-error-page h1 {\n font-size: 100%;\n color: #730E15;\n line-height: 1.5em;\n }\n\n .rails-default-error-page div.dialog > p {\n margin: 0 0 1em;\n padding: 1em;\n background-color: #F7F7F7;\n border: 1px solid #CCC;\n border-right-color: #999;\n border-left-color: #999;\n border-bottom-color: #999;\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n border-top-color: #DADADA;\n color: #666;\n box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n }\n </style>\n</head>\n\n<body class=\"rails-default-error-page\">\n <!-- This file lives in public/404.html -->\n <div class=\"dialog\">\n <div>\n <h1>The page you were looking for doesn't exist.</h1>\n <p>You may have mistyped the address or the page may have moved.</p>\n </div>\n <p>If you are the application owner check the logs for more information.</p>\n </div>\n</body>\n</html>\n"
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"path": "/client/tfa",
|
3
|
+
"method": "delete",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 400,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Fri, 29 May 2020 15:51:26 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
|
+
"error": "2fa not enabled for this account"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"path": "/client/tfa",
|
3
|
+
"method": "delete",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 200,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Fri, 29 May 2020 15:51:29 GMT",
|
13
|
+
"Etag": "W/\"665d72913e6740ad3d6e9d03d4c552c3\"",
|
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
|
+
"tfa": {
|
22
|
+
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
23
|
+
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
24
|
+
"enabled": false,
|
25
|
+
"provider": null
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"path": "/client/tfa",
|
3
|
+
"method": "post",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token",
|
7
|
+
"Content-Type": "application/json"
|
8
|
+
},
|
9
|
+
"json_body": {
|
10
|
+
"tfa": {
|
11
|
+
"provider": "totp"
|
12
|
+
}
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"response": {
|
16
|
+
"status": 400,
|
17
|
+
"headers": {
|
18
|
+
"Date": "Fri, 29 May 2020 15:51:29 GMT",
|
19
|
+
"Content-Type": "application/json; charset=utf-8",
|
20
|
+
"Transfer-Encoding": "chunked",
|
21
|
+
"Connection": "keep-alive",
|
22
|
+
"Cache-Control": "no-cache",
|
23
|
+
"Referrer-Policy": "strict-origin-when-cross-origin"
|
24
|
+
},
|
25
|
+
"json_body": {
|
26
|
+
"error": "2fa already enabled"
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
{
|
2
|
+
"path": "/client/tfa",
|
3
|
+
"method": "post",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token",
|
7
|
+
"Content-Type": "application/json"
|
8
|
+
},
|
9
|
+
"json_body": {
|
10
|
+
"tfa": {
|
11
|
+
"provider": "totp"
|
12
|
+
}
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"response": {
|
16
|
+
"status": 201,
|
17
|
+
"headers": {
|
18
|
+
"Date": "Fri, 29 May 2020 15:51:27 GMT",
|
19
|
+
"Etag": "W/\"e9b8efcdeb8c0f3b59438a59dd76c8ba\"",
|
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
|
+
"tfa": {
|
28
|
+
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
29
|
+
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
30
|
+
"enabled": false,
|
31
|
+
"provider": null,
|
32
|
+
"uri": "otpauth://totp/ScalingoStaging:example@null.scalingo.com?secret=tqjc262xmnqhttmdeobifcyl&issuer=ScalingoStaging"
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|