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,24 @@
|
|
1
|
+
{
|
2
|
+
"path": "/apps/5ed10967884fef000f5e4fff/addons/wrong-addon-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 13:09:01 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
|
+
"resource": "addon",
|
21
|
+
"error": "not found"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
{
|
2
|
+
"path": "/apps/5ed10967884fef000f5e4fff/addons/ad-6733873b-1628-4b8e-8e74-c30f1c3f3b63",
|
3
|
+
"method": "get",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 200,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Fri, 29 May 2020 13:08:59 GMT",
|
13
|
+
"Etag": "W/\"05abc99f1f317b622714f6f7d379296b\"",
|
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
|
+
"addon": {
|
22
|
+
"id": "ad-6733873b-1628-4b8e-8e74-c30f1c3f3b63",
|
23
|
+
"app_id": "5ed10967884fef000f5e4fff",
|
24
|
+
"resource_id": "some_example_5629",
|
25
|
+
"addon_provider": {
|
26
|
+
"id": "postgresql",
|
27
|
+
"name": "PostgreSQL",
|
28
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_Postgresql.svg"
|
29
|
+
},
|
30
|
+
"plan": {
|
31
|
+
"id": "5d1e03873e6b3b000eefa827",
|
32
|
+
"name": "postgresql-sandbox",
|
33
|
+
"display_name": "Sandbox",
|
34
|
+
"price": 0.0,
|
35
|
+
"description": "<p>Pouet</p>\n",
|
36
|
+
"position": null,
|
37
|
+
"on_demand": false,
|
38
|
+
"disabled": false,
|
39
|
+
"disabled_alternative_plan_id": null,
|
40
|
+
"sku": "ovh-st-fr1-postgresql-sandbox"
|
41
|
+
},
|
42
|
+
"provisioned_at": "2020-05-29T13:08:58.103Z",
|
43
|
+
"deprovisioned_at": null,
|
44
|
+
"status": "provisioning"
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
{
|
2
|
+
"path": "/apps/5ed10967884fef000f5e4fff/addons/wrong-addon-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": "Fri, 29 May 2020 13:08:59 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
|
+
"resource": "addon",
|
21
|
+
"error": "not found"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
{
|
2
|
+
"path": "/apps/5ed10967884fef000f5e4fff/addons",
|
3
|
+
"method": "get",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
"Authorization": "Bearer the-bearer-token"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"response": {
|
10
|
+
"status": 200,
|
11
|
+
"headers": {
|
12
|
+
"Date": "Fri, 29 May 2020 13:08:59 GMT",
|
13
|
+
"Etag": "W/\"11c09f61bfabc27524efd76463b5afb3\"",
|
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
|
+
"addons": [
|
22
|
+
{
|
23
|
+
"id": "ad-6733873b-1628-4b8e-8e74-c30f1c3f3b63",
|
24
|
+
"app_id": "5ed10967884fef000f5e4fff",
|
25
|
+
"resource_id": "some_example_5629",
|
26
|
+
"addon_provider": {
|
27
|
+
"id": "postgresql",
|
28
|
+
"name": "PostgreSQL",
|
29
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_Postgresql.svg"
|
30
|
+
},
|
31
|
+
"plan": {
|
32
|
+
"id": "5d1e03873e6b3b000eefa827",
|
33
|
+
"name": "postgresql-sandbox",
|
34
|
+
"display_name": "Sandbox",
|
35
|
+
"price": 0.0,
|
36
|
+
"description": "<p>Pouet</p>\n",
|
37
|
+
"position": null,
|
38
|
+
"on_demand": false,
|
39
|
+
"disabled": false,
|
40
|
+
"disabled_alternative_plan_id": null,
|
41
|
+
"sku": "ovh-st-fr1-postgresql-sandbox"
|
42
|
+
},
|
43
|
+
"provisioned_at": "2020-05-29T13:08:58.103Z",
|
44
|
+
"deprovisioned_at": null,
|
45
|
+
"status": "provisioning"
|
46
|
+
}
|
47
|
+
]
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
@@ -0,0 +1,588 @@
|
|
1
|
+
{
|
2
|
+
"path": "/addon_providers",
|
3
|
+
"method": "get",
|
4
|
+
"request": {
|
5
|
+
"headers": {
|
6
|
+
}
|
7
|
+
},
|
8
|
+
"response": {
|
9
|
+
"status": 200,
|
10
|
+
"headers": {
|
11
|
+
"Date": "Fri, 29 May 2020 13:08:56 GMT",
|
12
|
+
"Etag": "W/\"2518ea34b5f5f79ac75d79cb805e1661\"",
|
13
|
+
"Content-Type": "application/json; charset=utf-8",
|
14
|
+
"Transfer-Encoding": "chunked",
|
15
|
+
"Connection": "keep-alive",
|
16
|
+
"Cache-Control": "max-age=0, private, must-revalidate",
|
17
|
+
"Referrer-Policy": "strict-origin-when-cross-origin"
|
18
|
+
},
|
19
|
+
"json_body": {
|
20
|
+
"addon_providers": [
|
21
|
+
{
|
22
|
+
"name": "Dummy Addon",
|
23
|
+
"logo_url": "//storage.sbg1.cloud.ovh.net/v1/AUTH_be65d32d71a6435589a419eac98613f2/scalingo/scalingo-avatar.png",
|
24
|
+
"id": "dummy-addon",
|
25
|
+
"short_description": "Completely Dummy",
|
26
|
+
"description": "Completely Dummy addon for testing purposes",
|
27
|
+
"category": {
|
28
|
+
"id": "586a6ae13e6b3b0011288ac4",
|
29
|
+
"name": "Default",
|
30
|
+
"position": 2
|
31
|
+
},
|
32
|
+
"provider_name": "",
|
33
|
+
"provider_url": "",
|
34
|
+
"plans": [
|
35
|
+
{
|
36
|
+
"id": "55489f5061646d0001010000",
|
37
|
+
"name": "plan1",
|
38
|
+
"display_name": "First plan",
|
39
|
+
"price": 0.0,
|
40
|
+
"description": "<p>First plan, do nothing</p>\n",
|
41
|
+
"position": 0,
|
42
|
+
"on_demand": null,
|
43
|
+
"disabled": null,
|
44
|
+
"disabled_alternative_plan_id": null,
|
45
|
+
"sku": "ovh-st-fr1-plan1"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"id": "55489f5e61646d0001020000",
|
49
|
+
"name": "plan2",
|
50
|
+
"display_name": "Second plan",
|
51
|
+
"price": 0.0,
|
52
|
+
"description": "<p>Do nothing twice</p>\n",
|
53
|
+
"position": 2,
|
54
|
+
"on_demand": null,
|
55
|
+
"disabled": null,
|
56
|
+
"disabled_alternative_plan_id": null,
|
57
|
+
"sku": "ovh-st-fr1-plan2"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"id": "5821de7e3e6b3b00149051ad",
|
61
|
+
"name": "crashing-plan",
|
62
|
+
"display_name": "Crashing Plan",
|
63
|
+
"price": 0.0,
|
64
|
+
"description": "<p>Third</p>\n",
|
65
|
+
"position": 3,
|
66
|
+
"on_demand": null,
|
67
|
+
"disabled": false,
|
68
|
+
"disabled_alternative_plan_id": null,
|
69
|
+
"sku": "ovh-st-fr1-crashing-plan"
|
70
|
+
}
|
71
|
+
]
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"name": "VPN Addon",
|
75
|
+
"logo_url": "//appcenter.software-univention.de/meta-inf/4.2/openvpn4ucs/openvpn4ucs_detail_logo.svg",
|
76
|
+
"id": "vpn-addon",
|
77
|
+
"short_description": "",
|
78
|
+
"description": "",
|
79
|
+
"category": {
|
80
|
+
"id": "586a6ae13e6b3b0011288ac4",
|
81
|
+
"name": "Default",
|
82
|
+
"position": 2
|
83
|
+
},
|
84
|
+
"provider_name": "",
|
85
|
+
"provider_url": "",
|
86
|
+
"plans": [
|
87
|
+
{
|
88
|
+
"id": "5a1563f73e6b3b00122bb419",
|
89
|
+
"name": "vpn-openvpn-standard",
|
90
|
+
"display_name": "OpenVPN",
|
91
|
+
"price": 0.0,
|
92
|
+
"description": "<p>OpenVPN</p>\n",
|
93
|
+
"position": 1,
|
94
|
+
"on_demand": null,
|
95
|
+
"disabled": false,
|
96
|
+
"disabled_alternative_plan_id": null,
|
97
|
+
"sku": "ovh-st-fr1-vpn-openvpn-standard"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"id": "5a1564083e6b3b00122bb41b",
|
101
|
+
"name": "vpn-ipsec-standard",
|
102
|
+
"display_name": "IPSec VPN",
|
103
|
+
"price": 0.0,
|
104
|
+
"description": "<p>VPN IPSec</p>\n",
|
105
|
+
"position": 1,
|
106
|
+
"on_demand": null,
|
107
|
+
"disabled": false,
|
108
|
+
"disabled_alternative_plan_id": null,
|
109
|
+
"sku": "ovh-st-fr1-vpn-ipsec-standard"
|
110
|
+
}
|
111
|
+
]
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"name": "Scalingo Docker Image",
|
115
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_DockerImage_20162106105400.png",
|
116
|
+
"id": "scalingo-docker-image",
|
117
|
+
"short_description": "Get the docker images of the applications you've deployed on the platform",
|
118
|
+
"description": "Get the docker images of the applications you've deployed on the platform",
|
119
|
+
"category": {
|
120
|
+
"id": "54c6819f61646d0001000000",
|
121
|
+
"name": "Databases",
|
122
|
+
"position": 1
|
123
|
+
},
|
124
|
+
"provider_name": "Scalingo",
|
125
|
+
"provider_url": "https://scalingo.com",
|
126
|
+
"plans": [
|
127
|
+
{
|
128
|
+
"id": "575a71ba61646d000c010000",
|
129
|
+
"name": "base-plan",
|
130
|
+
"display_name": "Base Plan",
|
131
|
+
"price": 0.0,
|
132
|
+
"description": "<p>Descriptions</p>\n",
|
133
|
+
"position": 0,
|
134
|
+
"on_demand": null,
|
135
|
+
"disabled": false,
|
136
|
+
"disabled_alternative_plan_id": null,
|
137
|
+
"sku": "ovh-st-fr1-base-plan"
|
138
|
+
}
|
139
|
+
]
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"name": "MySQL",
|
143
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_MySQL.svg",
|
144
|
+
"id": "mysql",
|
145
|
+
"short_description": "",
|
146
|
+
"description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you MySQL as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate MySQL databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal MySQL Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated MySQL processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
|
147
|
+
"category": {
|
148
|
+
"id": "54c6819f61646d0001000000",
|
149
|
+
"name": "Databases",
|
150
|
+
"position": 1
|
151
|
+
},
|
152
|
+
"provider_name": "",
|
153
|
+
"provider_url": "",
|
154
|
+
"plans": [
|
155
|
+
{
|
156
|
+
"id": "5e9589d43e6b3b000f1f57d3",
|
157
|
+
"name": "mysql-sandbox",
|
158
|
+
"display_name": "Sandbox",
|
159
|
+
"price": 0.0,
|
160
|
+
"description": "<ul>\n<li>Single Node</li>\n<li>No backups (you can do it yourself)</li>\n<li>192MB RAM</li>\n<li>Includes 192MB disk space (hard limit)</li>\n<li>Max connections: 13</li>\n<li>Community Support</li>\n</ul>\n",
|
161
|
+
"position": 0,
|
162
|
+
"on_demand": false,
|
163
|
+
"disabled": false,
|
164
|
+
"disabled_alternative_plan_id": null,
|
165
|
+
"sku": "ovh-st-fr1-mysql-sandbox"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"id": "5e31afc23e6b3b000f708ce5",
|
169
|
+
"name": "mysql-starter-256",
|
170
|
+
"display_name": "Starter 256M",
|
171
|
+
"price": 3.6,
|
172
|
+
"description": "<ul>\n<li>Daily backup</li>\n<li>256MB RAM</li>\n<li>Includes 2.5GB disk space</li>\n<li>Single Node</li>\n<li>Max connections: 18</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
173
|
+
"position": 1,
|
174
|
+
"on_demand": false,
|
175
|
+
"disabled": false,
|
176
|
+
"disabled_alternative_plan_id": null,
|
177
|
+
"sku": "ovh-st-fr1-mysql-starter-256"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"id": "5e95b8d93e6b3b000f1f57d7",
|
181
|
+
"name": "mysql-starter-512",
|
182
|
+
"display_name": "Starter 512M",
|
183
|
+
"price": 7.2,
|
184
|
+
"description": "<ul>\n<li>Daily backup</li>\n<li>512MB RAM</li>\n<li>Includes 5GB disk space</li>\n<li>Single Node</li>\n<li>Max connections: 30</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
185
|
+
"position": 2,
|
186
|
+
"on_demand": false,
|
187
|
+
"disabled": false,
|
188
|
+
"disabled_alternative_plan_id": null,
|
189
|
+
"sku": "ovh-st-fr1-mysql-starter-512"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"id": "531c9b09646173000a030000",
|
193
|
+
"name": "1g",
|
194
|
+
"display_name": " 1G Database",
|
195
|
+
"price": 14.4,
|
196
|
+
"description": "<p>Daily backups<br>\n1GB RAM<br>\nIncludes 10GB disk space<br>\nMax connections: 62<br>\nMultiple Users<br>\nEmail Support<br>\nPrice for over plan disk space: 2€/GB<br>\nPrice displayed is computed for a total of 30 days</p>\n",
|
197
|
+
"position": 3,
|
198
|
+
"on_demand": false,
|
199
|
+
"disabled": false,
|
200
|
+
"disabled_alternative_plan_id": null,
|
201
|
+
"sku": "ovh-st-fr1-1g"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"id": "5e95ba9f3e6b3b000f1f57df",
|
205
|
+
"name": "mysql-business-512",
|
206
|
+
"display_name": "Business 512M",
|
207
|
+
"price": 20.0,
|
208
|
+
"description": "<ul>\n<li>Daily backups, Retention over 1 year</li>\n<li>High Available setup</li>\n<li>3 Nodes cluster</li>\n<li>512MB RAM per node</li>\n<li>Includes 5GB disk space per node</li>\n<li>Max connections: 30</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
209
|
+
"position": 4,
|
210
|
+
"on_demand": false,
|
211
|
+
"disabled": false,
|
212
|
+
"disabled_alternative_plan_id": null,
|
213
|
+
"sku": "ovh-st-fr1-mysql-business-512"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"id": "5e95bad83e6b3b000f1f57e2",
|
217
|
+
"name": "mysql-business-1024",
|
218
|
+
"display_name": "Business 1G",
|
219
|
+
"price": 40.0,
|
220
|
+
"description": "<ul>\n<li>Daily backups, Retention over 1 year</li>\n<li>High Available setup</li>\n<li>3 Nodes cluster</li>\n<li>1GiB RAM per node</li>\n<li>Includes 5GB disk space per node</li>\n<li>Max connections: 30</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
221
|
+
"position": 5,
|
222
|
+
"on_demand": false,
|
223
|
+
"disabled": false,
|
224
|
+
"disabled_alternative_plan_id": null,
|
225
|
+
"sku": "ovh-st-fr1-mysql-business-1024"
|
226
|
+
}
|
227
|
+
]
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"name": "TCP Load Balancer",
|
231
|
+
"logo_url": "http://1zkq0n152z6rnp4v81tnk1zh-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/IOTlogopng503x503.png",
|
232
|
+
"id": "tcp-load-balancer",
|
233
|
+
"short_description": "Un addon TCP tmtc",
|
234
|
+
"description": "THE ADDON TMTC tmtc ",
|
235
|
+
"category": {
|
236
|
+
"id": "586a6ae13e6b3b0011288ac4",
|
237
|
+
"name": "Default",
|
238
|
+
"position": 2
|
239
|
+
},
|
240
|
+
"provider_name": "Scalingo",
|
241
|
+
"provider_url": "https://scalingo.com",
|
242
|
+
"plans": [
|
243
|
+
{
|
244
|
+
"id": "59de15cf3e6b3b001214ea90",
|
245
|
+
"name": "sandbox",
|
246
|
+
"display_name": "Sandbox",
|
247
|
+
"price": 0.0,
|
248
|
+
"description": "<p>200 pps<br>\n2000 Packet burst</p>\n",
|
249
|
+
"position": 1,
|
250
|
+
"on_demand": null,
|
251
|
+
"disabled": false,
|
252
|
+
"disabled_alternative_plan_id": null,
|
253
|
+
"sku": "ovh-st-fr1-sandbox"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"id": "59f8750e3e6b3b0010859de9",
|
257
|
+
"name": "1k",
|
258
|
+
"display_name": "1k pps",
|
259
|
+
"price": 10.0,
|
260
|
+
"description": "<p>1 000 pps<br>\n10 000 packets burst</p>\n",
|
261
|
+
"position": 2,
|
262
|
+
"on_demand": null,
|
263
|
+
"disabled": false,
|
264
|
+
"disabled_alternative_plan_id": null,
|
265
|
+
"sku": "ovh-st-fr1-1k"
|
266
|
+
},
|
267
|
+
{
|
268
|
+
"id": "59f875343e6b3b0010859deb",
|
269
|
+
"name": "10k",
|
270
|
+
"display_name": "10k pps",
|
271
|
+
"price": 1000.0,
|
272
|
+
"description": "<p>10 000 pps<br>\n100 000 packets burst</p>\n",
|
273
|
+
"position": 3,
|
274
|
+
"on_demand": null,
|
275
|
+
"disabled": false,
|
276
|
+
"disabled_alternative_plan_id": null,
|
277
|
+
"sku": "ovh-st-fr1-10k"
|
278
|
+
}
|
279
|
+
]
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"name": "MongoDB",
|
283
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_MongoDB_20151203113100.svg",
|
284
|
+
"id": "mongodb",
|
285
|
+
"short_description": "",
|
286
|
+
"description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you MongoDB as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate MongoDB databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal MongoDB Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated MongoDB processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Oplog for single node instances\r\n\r\nAccessing the **oplog** is just a click away on our web dashboard!\r\nEnjoy real time features in the applications which require it.\r\nMeteor JS developers, that's for you!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
|
287
|
+
"category": {
|
288
|
+
"id": "54c6819f61646d0001000000",
|
289
|
+
"name": "Databases",
|
290
|
+
"position": 1
|
291
|
+
},
|
292
|
+
"provider_name": "",
|
293
|
+
"provider_url": "",
|
294
|
+
"plans": [
|
295
|
+
{
|
296
|
+
"id": "5995bf383e6b3b001390a9d2",
|
297
|
+
"name": "mongo-sandbox",
|
298
|
+
"display_name": "Sandbox",
|
299
|
+
"price": 0.0,
|
300
|
+
"description": "<ul>\n<li>Single Node</li>\n<li>No backups (you can do it yourself)</li>\n<li>128MB RAM</li>\n<li>Includes 128MB disk space (hard limit)</li>\n<li>Community Support</li>\n</ul>\n",
|
301
|
+
"position": 0,
|
302
|
+
"on_demand": null,
|
303
|
+
"disabled": false,
|
304
|
+
"disabled_alternative_plan_id": null,
|
305
|
+
"sku": "ovh-st-fr1-mongo-sandbox"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"id": "59b2a9cc3e6b3b00124da641",
|
309
|
+
"name": "mongo-starter-256",
|
310
|
+
"display_name": "Starter 256M",
|
311
|
+
"price": 7.2,
|
312
|
+
"description": "<p>Mongo Starter 256</p>\n",
|
313
|
+
"position": 2,
|
314
|
+
"on_demand": null,
|
315
|
+
"disabled": false,
|
316
|
+
"disabled_alternative_plan_id": null,
|
317
|
+
"sku": "ovh-st-fr1-mongo-starter-256"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"id": "5bed7e6fc44b4700116a530d",
|
321
|
+
"name": "mongo-starter-1024",
|
322
|
+
"display_name": "Starter 1G",
|
323
|
+
"price": 14.4,
|
324
|
+
"description": "<p>1G</p>\n",
|
325
|
+
"position": 4,
|
326
|
+
"on_demand": null,
|
327
|
+
"disabled": false,
|
328
|
+
"disabled_alternative_plan_id": null,
|
329
|
+
"sku": "ovh-st-fr1-mongo-starter-1024"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"id": "596e5ded3e6b3b001282f88d",
|
333
|
+
"name": "mongo-business-512",
|
334
|
+
"display_name": "Business 512MB",
|
335
|
+
"price": 10.0,
|
336
|
+
"description": "<ul>\n<li>Replicaset</li>\n<li>1 daily backup</li>\n<li>512MB RAM per instance</li>\n<li>includes 5GB disk space per node (soft limit)</li>\n<li>4 nodes (2 data, 1 arbiter, 1 backup)</li>\n<li>SSL Connection available</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
337
|
+
"position": 5,
|
338
|
+
"on_demand": null,
|
339
|
+
"disabled": false,
|
340
|
+
"disabled_alternative_plan_id": null,
|
341
|
+
"sku": "ovh-st-fr1-mongo-business-512"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"id": "59b7d8a43e6b3b00124da648",
|
345
|
+
"name": "mongo-business-1024",
|
346
|
+
"display_name": "Business 1G",
|
347
|
+
"price": 20.0,
|
348
|
+
"description": "<ul>\n<li>Replicaset</li>\n<li>1 daily backup</li>\n<li>1GB RAM per instance</li>\n<li>includes 10GB disk space per node (soft limit)</li>\n<li>4 nodes (2 data, 1 arbiter, 1 backup)</li>\n<li>SSL Connection available</li>\n<li>Multiple Users</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
349
|
+
"position": 6,
|
350
|
+
"on_demand": null,
|
351
|
+
"disabled": false,
|
352
|
+
"disabled_alternative_plan_id": null,
|
353
|
+
"sku": "ovh-st-fr1-mongo-business-1024"
|
354
|
+
}
|
355
|
+
]
|
356
|
+
},
|
357
|
+
{
|
358
|
+
"name": "Elasticsearch",
|
359
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_Elasticsearch.svg",
|
360
|
+
"id": "elasticsearch",
|
361
|
+
"short_description": "",
|
362
|
+
"description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you Elasticsearch as a service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate Elasticsearch databases on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Optimal Elasticsearch Performance\r\n\r\nEnjoy SSD-like **performance** on our SAN-backed and dedicated Elasticsearch processes on all of our plans.\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
|
363
|
+
"category": {
|
364
|
+
"id": "54c6819f61646d0001000000",
|
365
|
+
"name": "Databases",
|
366
|
+
"position": 1
|
367
|
+
},
|
368
|
+
"provider_name": "",
|
369
|
+
"provider_url": "",
|
370
|
+
"plans": [
|
371
|
+
{
|
372
|
+
"id": "5c1bbf5d3e6b3b0012974a97",
|
373
|
+
"name": "sandbox",
|
374
|
+
"display_name": "Sandbox",
|
375
|
+
"price": 0.0,
|
376
|
+
"description": "<p>sandbox plan: for hobbyits</p>\n",
|
377
|
+
"position": 1,
|
378
|
+
"on_demand": null,
|
379
|
+
"disabled": false,
|
380
|
+
"disabled_alternative_plan_id": null,
|
381
|
+
"sku": "ovh-st-fr1-sandbox"
|
382
|
+
},
|
383
|
+
{
|
384
|
+
"id": "5c1bbf733e6b3b0012974a98",
|
385
|
+
"name": "starter-1024",
|
386
|
+
"display_name": "Starter 1024",
|
387
|
+
"price": 10.0,
|
388
|
+
"description": "<p>Starter 1GB</p>\n",
|
389
|
+
"position": 2,
|
390
|
+
"on_demand": null,
|
391
|
+
"disabled": false,
|
392
|
+
"disabled_alternative_plan_id": null,
|
393
|
+
"sku": "ovh-st-fr1-starter-1024"
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"id": "5c1bbf923e6b3b0012974a99",
|
397
|
+
"name": "starter-2048",
|
398
|
+
"display_name": "Starter 2048",
|
399
|
+
"price": 10.0,
|
400
|
+
"description": "<p>Starter 2GB</p>\n",
|
401
|
+
"position": 3,
|
402
|
+
"on_demand": null,
|
403
|
+
"disabled": false,
|
404
|
+
"disabled_alternative_plan_id": null,
|
405
|
+
"sku": "ovh-st-fr1-starter-2048"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"id": "5c1bbfa73e6b3b0012974a9a",
|
409
|
+
"name": "business-1024",
|
410
|
+
"display_name": "Business 1024",
|
411
|
+
"price": 100.0,
|
412
|
+
"description": "<p>Toto</p>\n",
|
413
|
+
"position": 5,
|
414
|
+
"on_demand": null,
|
415
|
+
"disabled": false,
|
416
|
+
"disabled_alternative_plan_id": null,
|
417
|
+
"sku": "ovh-st-fr1-business-1024"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"id": "5c1bbfbe3e6b3b0012974a9b",
|
421
|
+
"name": "business-2048",
|
422
|
+
"display_name": "Business 2048",
|
423
|
+
"price": 250.0,
|
424
|
+
"description": "<p>TotoMolo</p>\n",
|
425
|
+
"position": 6,
|
426
|
+
"on_demand": null,
|
427
|
+
"disabled": false,
|
428
|
+
"disabled_alternative_plan_id": null,
|
429
|
+
"sku": "ovh-st-fr1-business-2048"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"id": "5c34f89290da2a001233c454",
|
433
|
+
"name": "business-4096",
|
434
|
+
"display_name": "Business 4096M",
|
435
|
+
"price": 500.0,
|
436
|
+
"description": "<p>3 nodes 4G</p>\n",
|
437
|
+
"position": 10,
|
438
|
+
"on_demand": true,
|
439
|
+
"disabled": false,
|
440
|
+
"disabled_alternative_plan_id": null,
|
441
|
+
"sku": "ovh-st-fr1-business-4096"
|
442
|
+
}
|
443
|
+
]
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"name": "Redis",
|
447
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_Redis.svg",
|
448
|
+
"id": "redis",
|
449
|
+
"short_description": "",
|
450
|
+
"description": "<div class=\"row text-center\" markdown=\"1\">\r\n<div class=\"col-xs-12\" markdown=\"1\">\r\n\r\n## Scalingo providing you Redis as a Service!\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### The Magic of the Cloud\r\n\r\nCreate Redis instances on-demand. This add-on is **elastic**: scale up and down with ease, we bill by the minute. Never think about machines and never install software. We give you a connection string, and you are good to go!\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Expert Care and Support\r\n\r\nGet advice from our team of experts.\r\n\r\n</div>\r\n\r\n<div class=\"col-xs-12 col-sm-6\" markdown=\"1\">\r\n\r\n### Backups\r\n\r\nYour data are backed up daily with the following conservation rule:\r\n* Everyday of 1 month\r\n* One per week during the 2nd and 3rd months\r\n* One per month during the 4th, 5th and 6th months\r\n\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\" markdown=\"1\">\r\n\r\n<div class=\"col-xs-12 col-sm-6 col-lg-4\" markdown=\"1\">\r\n\r\n### High availability\r\n\r\nHigh availability options will be available in the coming weeks.\r\n\r\n</div>\r\n</div>",
|
451
|
+
"category": {
|
452
|
+
"id": "54c6819f61646d0001000000",
|
453
|
+
"name": "Databases",
|
454
|
+
"position": 1
|
455
|
+
},
|
456
|
+
"provider_name": "",
|
457
|
+
"provider_url": "",
|
458
|
+
"plans": [
|
459
|
+
{
|
460
|
+
"id": "5cb093763e6b3b00117a36f0",
|
461
|
+
"name": "redis-sandbox",
|
462
|
+
"display_name": "Sandbox",
|
463
|
+
"price": 0.0,
|
464
|
+
"description": "<ul>\n<li>Single Node</li>\n<li>No backups (you can do it yourself)</li>\n<li>64MB RAM</li>\n<li>Includes 64 MB disk space (hard limit)</li>\n<li>Community Support</li>\n</ul>\n",
|
465
|
+
"position": 10,
|
466
|
+
"on_demand": false,
|
467
|
+
"disabled": false,
|
468
|
+
"disabled_alternative_plan_id": null,
|
469
|
+
"sku": "ovh-st-fr1-redis-sandbox"
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"id": "5cb093983e6b3b00117a36f2",
|
473
|
+
"name": "redis-starter-256",
|
474
|
+
"display_name": "Starter 256M",
|
475
|
+
"price": 7.2,
|
476
|
+
"description": "<ul>\n<li>1 daily backup</li>\n<li>256MB RAM</li>\n<li>Includes 2.5GB disk space</li>\n<li>Single Node</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
477
|
+
"position": 20,
|
478
|
+
"on_demand": false,
|
479
|
+
"disabled": false,
|
480
|
+
"disabled_alternative_plan_id": null,
|
481
|
+
"sku": "ovh-st-fr1-redis-starter-256"
|
482
|
+
},
|
483
|
+
{
|
484
|
+
"id": "5cb093bc3e6b3b00117a36f4",
|
485
|
+
"name": "redis-starter-512",
|
486
|
+
"display_name": "Starter 512M",
|
487
|
+
"price": 14.4,
|
488
|
+
"description": "<ul>\n<li>1 daily backup</li>\n<li>512MB RAM</li>\n<li>Includes 5GB disk space</li>\n<li>Single Node</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
489
|
+
"position": 20,
|
490
|
+
"on_demand": false,
|
491
|
+
"disabled": false,
|
492
|
+
"disabled_alternative_plan_id": null,
|
493
|
+
"sku": "ovh-st-fr1-redis-starter-512"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"id": "5cb093dd3e6b3b00117a36f6",
|
497
|
+
"name": "redis-starter-1024",
|
498
|
+
"display_name": "Starter 1G",
|
499
|
+
"price": 28.8,
|
500
|
+
"description": "<ul>\n<li>1 daily backup</li>\n<li>1GB RAM</li>\n<li>Includes 10GB disk space</li>\n<li>Single Node</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
501
|
+
"position": 40,
|
502
|
+
"on_demand": false,
|
503
|
+
"disabled": false,
|
504
|
+
"disabled_alternative_plan_id": null,
|
505
|
+
"sku": "ovh-st-fr1-redis-starter-1024"
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"id": "5cb093fd3e6b3b00117a36f8",
|
509
|
+
"name": "redis-business-256",
|
510
|
+
"display_name": "Business 256M",
|
511
|
+
"price": 14.4,
|
512
|
+
"description": "<ul>\n<li>Cluster</li>\n<li>High Availability</li>\n<li>1 daily backup</li>\n<li>256MB RAM per instance</li>\n<li>includes 2.5GB disk space per node (soft limit)</li>\n<li>2 nodes</li>\n<li>SSL/TLS Connection available</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
513
|
+
"position": 50,
|
514
|
+
"on_demand": false,
|
515
|
+
"disabled": false,
|
516
|
+
"disabled_alternative_plan_id": null,
|
517
|
+
"sku": "ovh-st-fr1-redis-business-256"
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"id": "5cb0943a3e6b3b00117a36fa",
|
521
|
+
"name": "redis-business-512",
|
522
|
+
"display_name": "Business 512M",
|
523
|
+
"price": 28.8,
|
524
|
+
"description": "<ul>\n<li>Cluster</li>\n<li>High Availability</li>\n<li>1 daily backup</li>\n<li>512MB RAM per instance</li>\n<li>includes 5GB disk space per node (soft limit)</li>\n<li>2 nodes</li>\n<li>SSL/TLS Connection available</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
525
|
+
"position": 70,
|
526
|
+
"on_demand": false,
|
527
|
+
"disabled": false,
|
528
|
+
"disabled_alternative_plan_id": null,
|
529
|
+
"sku": "ovh-st-fr1-redis-business-512"
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"id": "5cb094573e6b3b00117a36fc",
|
533
|
+
"name": "redis-business-1024",
|
534
|
+
"display_name": "Business 1G",
|
535
|
+
"price": 57.6,
|
536
|
+
"description": "<ul>\n<li>Cluster</li>\n<li>High Availability</li>\n<li>1 daily backup</li>\n<li>1GB RAM per instance</li>\n<li>includes 10GB disk space per node (soft limit)</li>\n<li>2 nodes</li>\n<li>SSL/TLS Connection available</li>\n<li>Email Support</li>\n<li>Price for over plan disk space: 2€/GB</li>\n<li>Price displayed is computed for a total of 30 days</li>\n</ul>\n",
|
537
|
+
"position": 90,
|
538
|
+
"on_demand": false,
|
539
|
+
"disabled": false,
|
540
|
+
"disabled_alternative_plan_id": null,
|
541
|
+
"sku": "ovh-st-fr1-redis-business-1024"
|
542
|
+
}
|
543
|
+
]
|
544
|
+
},
|
545
|
+
{
|
546
|
+
"name": "InfluxDB",
|
547
|
+
"logo_url": "//cdn.scalingo.com/addons/Scalingo_Influx_20160624151600.svg",
|
548
|
+
"id": "influxdb",
|
549
|
+
"short_description": "",
|
550
|
+
"description": "",
|
551
|
+
"category": {
|
552
|
+
"id": "54c6819f61646d0001000000",
|
553
|
+
"name": "Databases",
|
554
|
+
"position": 1
|
555
|
+
},
|
556
|
+
"provider_name": "",
|
557
|
+
"provider_url": "",
|
558
|
+
"plans": [
|
559
|
+
{
|
560
|
+
"id": "576c1d5e61646d000b010000",
|
561
|
+
"name": "free",
|
562
|
+
"display_name": "Free Tier",
|
563
|
+
"price": 0.0,
|
564
|
+
"description": "<p>Free Tier</p>\n",
|
565
|
+
"position": 1,
|
566
|
+
"on_demand": null,
|
567
|
+
"disabled": false,
|
568
|
+
"disabled_alternative_plan_id": null,
|
569
|
+
"sku": "ovh-st-fr1-free"
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"id": "59440c833e6b3b001103ffad",
|
573
|
+
"name": "4g",
|
574
|
+
"display_name": "4G Database",
|
575
|
+
"price": 0.0,
|
576
|
+
"description": "<p>4G RAM Database</p>\n",
|
577
|
+
"position": 1,
|
578
|
+
"on_demand": null,
|
579
|
+
"disabled": false,
|
580
|
+
"disabled_alternative_plan_id": null,
|
581
|
+
"sku": "ovh-st-fr1-4g"
|
582
|
+
}
|
583
|
+
]
|
584
|
+
}
|
585
|
+
]
|
586
|
+
}
|
587
|
+
}
|
588
|
+
}
|