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,29 +0,0 @@
|
|
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
|
-
}
|
@@ -1,29 +0,0 @@
|
|
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
|
-
}
|
@@ -1,36 +0,0 @@
|
|
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
|
-
}
|
@@ -1,29 +0,0 @@
|
|
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": "wrong-provider"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 400,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 15:51:26 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": "invalid provider"
|
27
|
-
}
|
28
|
-
}
|
29
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/client/tfa",
|
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 15:51:26 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
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/client/tfa/validate",
|
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
|
-
"attempt": "wrong-attempt"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 400,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 15:51:26 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": "otp not created"
|
27
|
-
}
|
28
|
-
}
|
29
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/client/tfa/validate",
|
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
|
-
"attempt": "975037"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 201,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 15:51:29 GMT",
|
19
|
-
"Etag": "W/\"d0e0f53b0bd356ed893581d0cd1520c4\"",
|
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
|
-
"codes": [
|
29
|
-
"7c2f7b8eef39f6f0fecf50c6cba10bc861e841a642474d0e1df3127757c33c99",
|
30
|
-
"fdba714c148254297b68c73cafc93bda56acb40bdc607cf713e03dbb32a04ad7",
|
31
|
-
"9fade6177b7347af2182c5c876d65a9d999cf0c5d1600d970facbdebbab7010b",
|
32
|
-
"2951e3e7d4a7dc40541a75c5e809ceda45260eadf0ac71ecb21411aecdb0b85c",
|
33
|
-
"841d1b0a685b9413a66c5d9b893d77d01a62b2208f5c46eb8d1e4f4c86ab0689",
|
34
|
-
"9aceef68c0e4ad1ebca5f9d85bc673ea0d59539f1dafa8d2fe26ce42a17bc548",
|
35
|
-
"0cb2458616577b6ae27a3fbac5bffb900a3c870b50b7c16688634312c6a7d38c",
|
36
|
-
"074d2589afc44a573da3513f40143af68bc4569698f736f04a322a4b6769061e",
|
37
|
-
"5f59a1d55138adc8f270ff20bfe94cd99eda5c93a20fc13388f738fcd9ac5e92",
|
38
|
-
"bec0262c91b7dee6822bcfad9f97c55eccadc783090285ecc91c5792c89f2c00"
|
39
|
-
],
|
40
|
-
"user": {
|
41
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
42
|
-
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
43
|
-
"enabled": true,
|
44
|
-
"provider": "totp"
|
45
|
-
}
|
46
|
-
}
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/client/tfa/validate",
|
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
|
-
"attempt": "wrong-attempt"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 400,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 15:51:27 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": "unable to validate otp attempt"
|
27
|
-
}
|
28
|
-
}
|
29
|
-
}
|
data/samples/auth/user/self.json
DELETED
@@ -1,54 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/users/self",
|
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 15:46:32 GMT",
|
13
|
-
"Etag": "W/\"08bf4adf1520d417f7f03783353a3b5d\"",
|
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
|
-
"user": {
|
22
|
-
"id": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
23
|
-
"created_at": "2020-05-13T19:03:47.606Z",
|
24
|
-
"email": "example@null.scalingo.com",
|
25
|
-
"username": "example-username",
|
26
|
-
"uuid": "us-676bb0c1-1ca9-4682-8ee1-257422e9eab5",
|
27
|
-
"company": null,
|
28
|
-
"location": "Somecity",
|
29
|
-
"fullname": "Example Username",
|
30
|
-
"github": {
|
31
|
-
"username": null,
|
32
|
-
"email": null,
|
33
|
-
"avatar_url": null,
|
34
|
-
"profile_url": null
|
35
|
-
},
|
36
|
-
"tos_accepted": true,
|
37
|
-
"unconfirmed_email": null,
|
38
|
-
"flags": {
|
39
|
-
"": true,
|
40
|
-
"admin": true
|
41
|
-
},
|
42
|
-
"limits": {
|
43
|
-
},
|
44
|
-
"referral_url": "https://staging.sclng.io/r/dc4830c8190baf25",
|
45
|
-
"referral_clicks": 0,
|
46
|
-
"free_trial_started_at": "2020-05-13T19:03:47.603Z",
|
47
|
-
"free_trial_end_time": "2020-05-29T13:02:23.469Z",
|
48
|
-
"suspended_at": null,
|
49
|
-
"suspension_reason": null,
|
50
|
-
"intercom_hash": "4a5880451125eef5aa30e0e10b67057086e2c0faa99de3eda3d7b8310bfda235"
|
51
|
-
}
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/users/stop_free_trial",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token"
|
7
|
-
}
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"status": 200,
|
11
|
-
"headers": {
|
12
|
-
"Date": "Thu, 27 Aug 2020 10:46:32 GMT",
|
13
|
-
"Etag": "W/\"08bf4adf1520d417f7f03783353a3b5d\"",
|
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
|
-
"message": "ok"
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
@@ -1,59 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/users/account",
|
3
|
-
"method": "put",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"user": {
|
11
|
-
"location": "Some other city"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 200,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 15:46:32 GMT",
|
19
|
-
"Etag": "W/\"9b37ad52abd6ab06664d2b68490e5c28\"",
|
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
|
-
"user": {
|
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": "Some other city",
|
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-05-29T13:02:23.469Z",
|
54
|
-
"suspended_at": null,
|
55
|
-
"suspension_reason": null
|
56
|
-
}
|
57
|
-
}
|
58
|
-
}
|
59
|
-
}
|
@@ -1,33 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/users/account",
|
3
|
-
"method": "put",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"user": {
|
11
|
-
"username": "soulou"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 422,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 29 May 2020 15:46:32 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
|
-
"username": [
|
28
|
-
"has already been taken"
|
29
|
-
]
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"id": "882d7733-923b-40dc-88e6-f1324e48c42a",
|
3
|
-
"create": {
|
4
|
-
"valid": {
|
5
|
-
"name": "Billing profile",
|
6
|
-
"address_line1": "1, rue de la paix",
|
7
|
-
"address_zip": "75001",
|
8
|
-
"address_city": "Paris",
|
9
|
-
"address_country": "France"
|
10
|
-
},
|
11
|
-
"invalid": {
|
12
|
-
"some": "attribute"
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"update": {
|
16
|
-
"valid": {
|
17
|
-
"address_city": "New Somecity"
|
18
|
-
},
|
19
|
-
"invalid": {
|
20
|
-
"address_country": "not a country"
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
@@ -1,50 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/profiles",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"profile": {
|
11
|
-
"name": "Billing profile",
|
12
|
-
"address_line1": "1, rue de la paix",
|
13
|
-
"address_zip": "75001",
|
14
|
-
"address_city": "Paris",
|
15
|
-
"address_country": "France"
|
16
|
-
}
|
17
|
-
}
|
18
|
-
},
|
19
|
-
"response": {
|
20
|
-
"status": 201,
|
21
|
-
"headers": {
|
22
|
-
"Date": "Fri, 12 Jun 2020 15:46:11 GMT",
|
23
|
-
"Content-Type": "application/json; charset=utf-8",
|
24
|
-
"Transfer-Encoding": "chunked",
|
25
|
-
"Connection": "keep-alive",
|
26
|
-
"Cache-Control": "no-cache"
|
27
|
-
},
|
28
|
-
"json_body": {
|
29
|
-
"profile": {
|
30
|
-
"id": "882d7733-923b-40dc-88e6-f1324e48c42a",
|
31
|
-
"name": "Billing profile",
|
32
|
-
"email": null,
|
33
|
-
"address_line1": "1, rue de la paix",
|
34
|
-
"address_line2": null,
|
35
|
-
"address_city": "Paris",
|
36
|
-
"balance": 0,
|
37
|
-
"address_zip": "75001",
|
38
|
-
"address_state": null,
|
39
|
-
"address_country": "FR",
|
40
|
-
"vat_number": null,
|
41
|
-
"company": null,
|
42
|
-
"payment_method": "sepa",
|
43
|
-
"created_at": "2020-05-29T13:01:46.217Z",
|
44
|
-
"updated_at": "2020-06-12T15:45:43.535Z",
|
45
|
-
"credit": 0,
|
46
|
-
"stripe_payment_method": null
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
50
|
-
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/profiles",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"profile": {
|
11
|
-
}
|
12
|
-
}
|
13
|
-
},
|
14
|
-
"response": {
|
15
|
-
"status": 400,
|
16
|
-
"headers": {
|
17
|
-
"Date": "Fri, 12 Jun 2020 15:46:10 GMT",
|
18
|
-
"Content-Type": "application/json; charset=utf-8",
|
19
|
-
"Transfer-Encoding": "chunked",
|
20
|
-
"Connection": "keep-alive",
|
21
|
-
"Cache-Control": "no-cache"
|
22
|
-
},
|
23
|
-
"json_body": {
|
24
|
-
"error": "profile is required"
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
@@ -1,44 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/profiles",
|
3
|
-
"method": "post",
|
4
|
-
"request": {
|
5
|
-
"headers": {
|
6
|
-
"Authorization": "Bearer the-bearer-token",
|
7
|
-
"Content-Type": "application/json"
|
8
|
-
},
|
9
|
-
"json_body": {
|
10
|
-
"profile": {
|
11
|
-
"some": "attribute"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": 422,
|
17
|
-
"headers": {
|
18
|
-
"Date": "Fri, 12 Jun 2020 15:46:11 GMT",
|
19
|
-
"Content-Type": "application/json; charset=utf-8",
|
20
|
-
"Transfer-Encoding": "chunked",
|
21
|
-
"Connection": "keep-alive",
|
22
|
-
"Cache-Control": "no-cache"
|
23
|
-
},
|
24
|
-
"json_body": {
|
25
|
-
"errors": {
|
26
|
-
"name": [
|
27
|
-
"can't be blank"
|
28
|
-
],
|
29
|
-
"address_line1": [
|
30
|
-
"can't be blank"
|
31
|
-
],
|
32
|
-
"address_zip": [
|
33
|
-
"can't be blank"
|
34
|
-
],
|
35
|
-
"address_city": [
|
36
|
-
"can't be blank"
|
37
|
-
],
|
38
|
-
"address_country": [
|
39
|
-
"can't be blank"
|
40
|
-
]
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
@@ -1,41 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/profile",
|
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, 12 Jun 2020 15:46:10 GMT",
|
13
|
-
"Etag": "W/\"d1a1d2eed6a6fc5fb399b497a4572e89\"",
|
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
|
-
},
|
19
|
-
"json_body": {
|
20
|
-
"profile": {
|
21
|
-
"id": "882d7733-923b-40dc-88e6-f1324e48c42a",
|
22
|
-
"name": "Billing",
|
23
|
-
"email": null,
|
24
|
-
"address_line1": "Somewhere",
|
25
|
-
"address_line2": null,
|
26
|
-
"address_city": "Somecity",
|
27
|
-
"balance": 0,
|
28
|
-
"address_zip": "12345",
|
29
|
-
"address_state": null,
|
30
|
-
"address_country": "FR",
|
31
|
-
"vat_number": null,
|
32
|
-
"company": null,
|
33
|
-
"payment_method": "sepa",
|
34
|
-
"created_at": "2020-05-29T13:01:46.217Z",
|
35
|
-
"updated_at": "2020-06-12T15:45:43.535Z",
|
36
|
-
"credit": 0,
|
37
|
-
"stripe_payment_method": null
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"path": "/profile",
|
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, 12 Jun 2020 15:46:10 GMT",
|
13
|
-
"Content-Type": "application/json; charset=utf-8",
|
14
|
-
"Transfer-Encoding": "chunked",
|
15
|
-
"Connection": "keep-alive",
|
16
|
-
"Cache-Control": "no-cache"
|
17
|
-
},
|
18
|
-
"json_body": {
|
19
|
-
"error": "no billing profile"
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|