scalingo 3.4.0 → 4.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/dependabot.yml +17 -0
- data/.github/workflows/publish.yml +6 -3
- data/.github/workflows/ruby.yml +3 -3
- data/.rubocop.yml +46 -17
- data/CHANGELOG.md +20 -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 +26 -53
- 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/auth.rb +1 -1
- data/lib/scalingo/bearer_token.rb +16 -9
- data/lib/scalingo/billing/profile.rb +3 -40
- data/lib/scalingo/billing.rb +1 -1
- data/lib/scalingo/client.rb +21 -31
- data/lib/scalingo/configuration.rb +3 -27
- data/lib/scalingo/core_client.rb +9 -30
- data/lib/scalingo/database/backups.rb +9 -0
- data/lib/scalingo/database/databases.rb +8 -0
- data/lib/scalingo/database.rb +13 -0
- 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/regional.rb +1 -1
- data/lib/scalingo/token_holder.rb +1 -46
- data/lib/scalingo/version.rb +1 -1
- data/scalingo.gemspec +7 -7
- metadata +63 -285
- 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/lib/scalingo/regional_database.rb +0 -13
- 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
- data/spec/scalingo/api/client_spec.rb +0 -256
- data/spec/scalingo/api/endpoint_spec.rb +0 -45
- data/spec/scalingo/api/response_spec.rb +0 -301
- data/spec/scalingo/auth/keys_spec.rb +0 -58
- data/spec/scalingo/auth/scm_integrations_spec.rb +0 -58
- data/spec/scalingo/auth/tokens_spec.rb +0 -74
- data/spec/scalingo/auth/two_factor_auth_spec.rb +0 -69
- data/spec/scalingo/auth/user_spec.rb +0 -31
- data/spec/scalingo/auth_spec.rb +0 -15
- data/spec/scalingo/bearer_token_spec.rb +0 -72
- data/spec/scalingo/billing/profile_spec.rb +0 -55
- data/spec/scalingo/billing_spec.rb +0 -11
- data/spec/scalingo/client_spec.rb +0 -93
- data/spec/scalingo/configuration_spec.rb +0 -57
- data/spec/scalingo/core_client_spec.rb +0 -23
- data/spec/scalingo/regional/addons_spec.rb +0 -169
- data/spec/scalingo/regional/apps_spec.rb +0 -137
- data/spec/scalingo/regional/autoscalers_spec.rb +0 -84
- data/spec/scalingo/regional/collaborators_spec.rb +0 -69
- data/spec/scalingo/regional/containers_spec.rb +0 -67
- data/spec/scalingo/regional/deployments_spec.rb +0 -45
- data/spec/scalingo/regional/domains_spec.rb +0 -84
- data/spec/scalingo/regional/environment_spec.rb +0 -77
- data/spec/scalingo/regional/events_spec.rb +0 -65
- data/spec/scalingo/regional/logs_spec.rb +0 -39
- data/spec/scalingo/regional/metrics_spec.rb +0 -46
- data/spec/scalingo/regional/notifiers_spec.rb +0 -113
- data/spec/scalingo/regional/operations_spec.rb +0 -27
- data/spec/scalingo/regional/scm_repo_links_spec.rb +0 -48
- data/spec/scalingo/regional_database/backups_spec.rb +0 -58
- data/spec/scalingo/regional_database/databases_spec.rb +0 -39
- data/spec/scalingo/regional_database_spec.rb +0 -11
- data/spec/scalingo/regional_spec.rb +0 -14
- data/spec/scalingo/token_holder_spec.rb +0 -81
@@ -1,62 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys",
|
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:04:34 GMT",
|
13
|
-
"Etag": "W/\"a25a51e7d9b0eb8cf01dde6663ca886f\"",
|
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
|
-
"keys": [
|
22
|
-
{
|
23
|
-
"id": "73c35bc1-c809-4a53-9409-a70e0f424c13",
|
24
|
-
"name": "example key",
|
25
|
-
"content": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q==",
|
26
|
-
"fingerprint": "43:c5:5b:5f:b1:f1:50:43:ad:20:a6:92:6a:1f:9a:3a",
|
27
|
-
"created_at": "2020-05-29T12:04:34.387Z",
|
28
|
-
"owner": {
|
29
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
30
|
-
"created_at": "2020-05-13T19:03:47.606Z",
|
31
|
-
"email": "example@null.scalingo.com",
|
32
|
-
"username": "example-username",
|
33
|
-
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
34
|
-
"company": null,
|
35
|
-
"location": "Somecity",
|
36
|
-
"fullname": "Example Username",
|
37
|
-
"github": {
|
38
|
-
"username": null,
|
39
|
-
"email": null,
|
40
|
-
"avatar_url": null,
|
41
|
-
"profile_url": null
|
42
|
-
},
|
43
|
-
"tos_accepted": true,
|
44
|
-
"unconfirmed_email": null,
|
45
|
-
"flags": {
|
46
|
-
"": true,
|
47
|
-
"admin": true
|
48
|
-
},
|
49
|
-
"limits": {
|
50
|
-
},
|
51
|
-
"referral_url": "https://staging.sclng.io/r/dc4830c8190baf25",
|
52
|
-
"referral_clicks": 0,
|
53
|
-
"free_trial_started_at": "2020-05-13T19:03:47.603Z",
|
54
|
-
"free_trial_end_time": "2020-06-12T21:03:00.000Z",
|
55
|
-
"suspended_at": null,
|
56
|
-
"suspension_reason": null
|
57
|
-
}
|
58
|
-
}
|
59
|
-
]
|
60
|
-
}
|
61
|
-
}
|
62
|
-
}
|
@@ -1,67 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"key": {
|
11
|
-
"name": "example key",
|
12
|
-
"content": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q=="
|
13
|
-
}
|
14
|
-
}
|
15
|
-
},
|
16
|
-
"response": {
|
17
|
-
"status": 201,
|
18
|
-
"headers": {
|
19
|
-
"Date": "Fri, 29 May 2020 12:04:34 GMT",
|
20
|
-
"Etag": "W/\"c60e645fc1f1e29e7daeac639a04959d\"",
|
21
|
-
"Content-Type": "application/json; charset=utf-8",
|
22
|
-
"Transfer-Encoding": "chunked",
|
23
|
-
"Connection": "keep-alive",
|
24
|
-
"Cache-Control": "max-age=0, private, must-revalidate",
|
25
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
26
|
-
},
|
27
|
-
"json_body": {
|
28
|
-
"key": {
|
29
|
-
"id": "73c35bc1-c809-4a53-9409-a70e0f424c13",
|
30
|
-
"name": "example key",
|
31
|
-
"content": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q==",
|
32
|
-
"fingerprint": "43:c5:5b:5f:b1:f1:50:43:ad:20:a6:92:6a:1f:9a:3a",
|
33
|
-
"created_at": "2020-05-29T12:04:34.387Z",
|
34
|
-
"owner": {
|
35
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
36
|
-
"created_at": "2020-05-13T19:03:47.606Z",
|
37
|
-
"email": "example@null.scalingo.com",
|
38
|
-
"username": "example-username",
|
39
|
-
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
40
|
-
"company": null,
|
41
|
-
"location": "Somecity",
|
42
|
-
"fullname": "Example Username",
|
43
|
-
"github": {
|
44
|
-
"username": null,
|
45
|
-
"email": null,
|
46
|
-
"avatar_url": null,
|
47
|
-
"profile_url": null
|
48
|
-
},
|
49
|
-
"tos_accepted": true,
|
50
|
-
"unconfirmed_email": null,
|
51
|
-
"flags": {
|
52
|
-
"": true,
|
53
|
-
"admin": true
|
54
|
-
},
|
55
|
-
"limits": {
|
56
|
-
},
|
57
|
-
"referral_url": "https://staging.sclng.io/r/dc4830c8190baf25",
|
58
|
-
"referral_clicks": 0,
|
59
|
-
"free_trial_started_at": "2020-05-13T19:03:47.603Z",
|
60
|
-
"free_trial_end_time": "2020-06-12T21:03:00.000Z",
|
61
|
-
"suspended_at": null,
|
62
|
-
"suspension_reason": null
|
63
|
-
}
|
64
|
-
}
|
65
|
-
}
|
66
|
-
}
|
67
|
-
}
|
@@ -1,34 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"key": {
|
11
|
-
"name": "example key"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 422,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 12:04:33 GMT",
|
19
|
-
"Content-Type": "application/json; charset=utf-8",
|
20
|
-
"Transfer-Encoding": "chunked",
|
21
|
-
"Connection": "keep-alive",
|
22
|
-
"Cache-Control": "no-cache",
|
23
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
24
|
-
},
|
25
|
-
"json_body": {
|
26
|
-
"errors": {
|
27
|
-
"content": [
|
28
|
-
"can't be blank",
|
29
|
-
"is too short (minimum is 10 characters)"
|
30
|
-
]
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys/73c35bc1-c809-4a53-9409-a70e0f424c13",
|
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:04:35 GMT",
|
13
|
-
"Connection": "keep-alive",
|
14
|
-
"Cache-Control": "no-cache",
|
15
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
16
|
-
},
|
17
|
-
"body": ""
|
18
|
-
}
|
19
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys/wrong-key",
|
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:04:35 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
|
-
}
|
@@ -1,60 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys/73c35bc1-c809-4a53-9409-a70e0f424c13",
|
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:04:35 GMT",
|
13
|
-
"Etag": "W/\"c60e645fc1f1e29e7daeac639a04959d\"",
|
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
|
-
"key": {
|
22
|
-
"id": "73c35bc1-c809-4a53-9409-a70e0f424c13",
|
23
|
-
"name": "example key",
|
24
|
-
"content": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q==",
|
25
|
-
"fingerprint": "43:c5:5b:5f:b1:f1:50:43:ad:20:a6:92:6a:1f:9a:3a",
|
26
|
-
"created_at": "2020-05-29T12:04:34.387Z",
|
27
|
-
"owner": {
|
28
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
29
|
-
"created_at": "2020-05-13T19:03:47.606Z",
|
30
|
-
"email": "example@null.scalingo.com",
|
31
|
-
"username": "example-username",
|
32
|
-
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
33
|
-
"company": null,
|
34
|
-
"location": "Somecity",
|
35
|
-
"fullname": "Example Username",
|
36
|
-
"github": {
|
37
|
-
"username": null,
|
38
|
-
"email": null,
|
39
|
-
"avatar_url": null,
|
40
|
-
"profile_url": null
|
41
|
-
},
|
42
|
-
"tos_accepted": true,
|
43
|
-
"unconfirmed_email": null,
|
44
|
-
"flags": {
|
45
|
-
"": true,
|
46
|
-
"admin": true
|
47
|
-
},
|
48
|
-
"limits": {
|
49
|
-
},
|
50
|
-
"referral_url": "https://staging.sclng.io/r/dc4830c8190baf25",
|
51
|
-
"referral_clicks": 0,
|
52
|
-
"free_trial_started_at": "2020-05-13T19:03:47.603Z",
|
53
|
-
"free_trial_end_time": "2020-06-12T21:03:00.000Z",
|
54
|
-
"suspended_at": null,
|
55
|
-
"suspension_reason": null
|
56
|
-
}
|
57
|
-
}
|
58
|
-
}
|
59
|
-
}
|
60
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/keys/wrong-key",
|
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 12:04:35 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
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"id": "5bb2e877-9e5c-a83f-8e0e-7c75eebf212c",
|
3
|
-
"not_found_id": "wrong-id",
|
4
|
-
"create": {
|
5
|
-
"valid": {
|
6
|
-
"scm_type": "gitlab-self-hosted",
|
7
|
-
"url": "https://gitlab.example.com",
|
8
|
-
"access_token": "some-access-token"
|
9
|
-
},
|
10
|
-
"invalid": {
|
11
|
-
"scm_type": "wrong"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
}
|
@@ -1,41 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/scm_integrations",
|
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:58 GMT",
|
13
|
-
"Etag": "W/\"ef16d877a7684fed0f89b97c13c7a61c\"",
|
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
|
-
"scm_integrations": [
|
22
|
-
{
|
23
|
-
"id": "5bb2e877-9e5c-a83f-8e0e-7c75eebf212c",
|
24
|
-
"scm_type": "gitlab-self-hosted",
|
25
|
-
"url": "https://gitlab.example.com",
|
26
|
-
"created_at": "2019-08-12T11:59:37.298Z",
|
27
|
-
"uid": "42",
|
28
|
-
"username": "test_user",
|
29
|
-
"avatar_url": "https://secure.gravatar.com/avatar/4d65e90ca34da7a9084b6ce6c?s=80&d=identicon",
|
30
|
-
"email": "test-user@example.com",
|
31
|
-
"profile_url": "https://gitlab.example.com/test-user",
|
32
|
-
"owner": {
|
33
|
-
"id": "us-88c4e9af-f93c-8284-c67a-fa414d49c5de",
|
34
|
-
"email": "test-user@example.com",
|
35
|
-
"username": "test-user"
|
36
|
-
}
|
37
|
-
}
|
38
|
-
]
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
@@ -1,41 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/scm_integrations",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"scm_integration": {
|
11
|
-
"scm_type":"gitlab-self-hosted",
|
12
|
-
"url":"https://gitlab.example.com",
|
13
|
-
"access_token": "some-access-token"
|
14
|
-
}
|
15
|
-
}
|
16
|
-
},
|
17
|
-
"response": {
|
18
|
-
"status": 201,
|
19
|
-
"headers": {
|
20
|
-
"Content-Type": "application/json; charset=utf-8"
|
21
|
-
},
|
22
|
-
"json_body": {
|
23
|
-
"scm_integration": {
|
24
|
-
"id": "5bb2e877-9e5c-a83f-8e0e-7c75eebf212c",
|
25
|
-
"scm_type": "gitlab-self-hosted",
|
26
|
-
"url": "https://gitlab.example.com",
|
27
|
-
"created_at": "2019-08-12T11:59:37.298Z",
|
28
|
-
"uid": "42",
|
29
|
-
"username": "test_user",
|
30
|
-
"avatar_url": "https://secure.gravatar.com/avatar/4d65e90ca34da7a9084b6ce6c?s=80&d=identicon",
|
31
|
-
"email": "test-user@example.com",
|
32
|
-
"profile_url": "https://gitlab.example.com/test-user",
|
33
|
-
"owner": {
|
34
|
-
"id": "us-88c4e9af-f93c-8284-c67a-fa414d49c5de",
|
35
|
-
"email": "test-user@example.com",
|
36
|
-
"username": "test-user"
|
37
|
-
}
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/scm_integrations",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"scm_integration": {
|
11
|
-
"scm_type": "wrong"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 422,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Sat, 30 May 2020 12:26:36 GMT",
|
19
|
-
"Content-Type": "application/json; charset=utf-8",
|
20
|
-
"Transfer-Encoding": "chunked",
|
21
|
-
"Connection": "keep-alive",
|
22
|
-
"Cache-Control": "no-cache",
|
23
|
-
"Referrer-Policy": "strict-origin-when-cross-origin"
|
24
|
-
},
|
25
|
-
"json_body": {
|
26
|
-
"errors": {
|
27
|
-
"access_token": [
|
28
|
-
"can't be blank"
|
29
|
-
],
|
30
|
-
"scm_type": [
|
31
|
-
"Unknown scm integration type"
|
32
|
-
]
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
36
|
-
}
|
@@ -1,15 +0,0 @@
|
|
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
|
-
}
|
@@ -1,23 +0,0 @@
|
|
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
|
-
}
|
@@ -1,34 +0,0 @@
|
|
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
|
-
}
|
@@ -1,23 +0,0 @@
|
|
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
|
-
}
|
@@ -1,13 +0,0 @@
|
|
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
|
-
}
|
@@ -1,32 +0,0 @@
|
|
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
|
-
}
|
@@ -1,37 +0,0 @@
|
|
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
|
-
}
|
@@ -1,19 +0,0 @@
|
|
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
|
-
}
|
@@ -1,19 +0,0 @@
|
|
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
|
-
}
|