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,70 @@
|
|
1
|
+
require "scalingo/api/endpoint"
|
2
|
+
|
3
|
+
module Scalingo
|
4
|
+
class Regional::Domains < API::Endpoint
|
5
|
+
def for(app_id, headers = nil, &block)
|
6
|
+
data = nil
|
7
|
+
|
8
|
+
response = connection.get(
|
9
|
+
"apps/#{app_id}/domains",
|
10
|
+
data,
|
11
|
+
headers,
|
12
|
+
&block
|
13
|
+
)
|
14
|
+
|
15
|
+
unpack(response, key: :domains)
|
16
|
+
end
|
17
|
+
|
18
|
+
def find(app_id, domain_id, headers = nil, &block)
|
19
|
+
data = nil
|
20
|
+
|
21
|
+
response = connection.get(
|
22
|
+
"apps/#{app_id}/domains/#{domain_id}",
|
23
|
+
data,
|
24
|
+
headers,
|
25
|
+
&block
|
26
|
+
)
|
27
|
+
|
28
|
+
unpack(response, key: :domain)
|
29
|
+
end
|
30
|
+
|
31
|
+
def create(app_id, payload = {}, headers = nil, &block)
|
32
|
+
data = {domain: payload}
|
33
|
+
|
34
|
+
response = connection.post(
|
35
|
+
"apps/#{app_id}/domains",
|
36
|
+
data,
|
37
|
+
headers,
|
38
|
+
&block
|
39
|
+
)
|
40
|
+
|
41
|
+
unpack(response, key: :domain)
|
42
|
+
end
|
43
|
+
|
44
|
+
def update(app_id, domain_id, payload = {}, headers = nil, &block)
|
45
|
+
data = {domain: payload}
|
46
|
+
|
47
|
+
response = connection.patch(
|
48
|
+
"apps/#{app_id}/domains/#{domain_id}",
|
49
|
+
data,
|
50
|
+
headers,
|
51
|
+
&block
|
52
|
+
)
|
53
|
+
|
54
|
+
unpack(response, key: :domain)
|
55
|
+
end
|
56
|
+
|
57
|
+
def destroy(app_id, domain_id, headers = nil, &block)
|
58
|
+
data = nil
|
59
|
+
|
60
|
+
response = connection.delete(
|
61
|
+
"apps/#{app_id}/domains/#{domain_id}",
|
62
|
+
data,
|
63
|
+
headers,
|
64
|
+
&block
|
65
|
+
)
|
66
|
+
|
67
|
+
unpack(response)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require "scalingo/api/endpoint"
|
2
|
+
|
3
|
+
module Scalingo
|
4
|
+
class Regional::Environment < API::Endpoint
|
5
|
+
def for(app_id, headers = nil, &block)
|
6
|
+
data = nil
|
7
|
+
|
8
|
+
response = connection.get(
|
9
|
+
"apps/#{app_id}/variables",
|
10
|
+
data,
|
11
|
+
headers,
|
12
|
+
&block
|
13
|
+
)
|
14
|
+
|
15
|
+
unpack(response, key: :variables)
|
16
|
+
end
|
17
|
+
|
18
|
+
def create(app_id, payload = {}, headers = nil, &block)
|
19
|
+
data = {variable: payload}
|
20
|
+
|
21
|
+
response = connection.post(
|
22
|
+
"apps/#{app_id}/variables",
|
23
|
+
data,
|
24
|
+
headers,
|
25
|
+
&block
|
26
|
+
)
|
27
|
+
|
28
|
+
unpack(response, key: :variable)
|
29
|
+
end
|
30
|
+
|
31
|
+
def update(app_id, variable_id, value, headers = nil, &block)
|
32
|
+
data = {variable: {value: value}}
|
33
|
+
|
34
|
+
response = connection.patch(
|
35
|
+
"apps/#{app_id}/variables/#{variable_id}",
|
36
|
+
data,
|
37
|
+
headers,
|
38
|
+
&block
|
39
|
+
)
|
40
|
+
|
41
|
+
unpack(response, key: :variable)
|
42
|
+
end
|
43
|
+
|
44
|
+
def destroy(app_id, variable_id, headers = nil, &block)
|
45
|
+
data = nil
|
46
|
+
|
47
|
+
response = connection.delete(
|
48
|
+
"apps/#{app_id}/variables/#{variable_id}",
|
49
|
+
data,
|
50
|
+
headers,
|
51
|
+
&block
|
52
|
+
)
|
53
|
+
|
54
|
+
unpack(response)
|
55
|
+
end
|
56
|
+
|
57
|
+
def bulk_update(app_id, variables, headers = nil, &block)
|
58
|
+
data = {variables: variables}
|
59
|
+
|
60
|
+
response = connection.put(
|
61
|
+
"apps/#{app_id}/variables",
|
62
|
+
data,
|
63
|
+
headers,
|
64
|
+
&block
|
65
|
+
)
|
66
|
+
|
67
|
+
unpack(response, key: :variables)
|
68
|
+
end
|
69
|
+
|
70
|
+
def bulk_destroy(app_id, variable_ids, headers = nil, &block)
|
71
|
+
data = {variable_ids: variable_ids}
|
72
|
+
|
73
|
+
response = connection.delete(
|
74
|
+
"apps/#{app_id}/variables",
|
75
|
+
data,
|
76
|
+
headers,
|
77
|
+
&block
|
78
|
+
)
|
79
|
+
|
80
|
+
unpack(response)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
module Scalingo
|
2
|
+
class Regional::Events < API::Endpoint
|
3
|
+
def all(payload = {}, headers = nil, &block)
|
4
|
+
data = payload.compact
|
5
|
+
|
6
|
+
response = connection.get(
|
7
|
+
"events",
|
8
|
+
data,
|
9
|
+
headers,
|
10
|
+
&block
|
11
|
+
)
|
12
|
+
|
13
|
+
unpack(response, key: :events)
|
14
|
+
end
|
15
|
+
|
16
|
+
def for(app_id, payload = {}, headers = nil, &block)
|
17
|
+
data = payload.compact
|
18
|
+
|
19
|
+
response = connection.get(
|
20
|
+
"apps/#{app_id}/events",
|
21
|
+
data,
|
22
|
+
headers,
|
23
|
+
&block
|
24
|
+
)
|
25
|
+
|
26
|
+
unpack(response, key: :events)
|
27
|
+
end
|
28
|
+
|
29
|
+
def types(headers = nil, &block)
|
30
|
+
data = nil
|
31
|
+
|
32
|
+
response = connection(allow_guest: true).get(
|
33
|
+
"event_types",
|
34
|
+
data,
|
35
|
+
headers,
|
36
|
+
&block
|
37
|
+
)
|
38
|
+
|
39
|
+
unpack(response, key: :event_types)
|
40
|
+
end
|
41
|
+
|
42
|
+
def categories(headers = nil, &block)
|
43
|
+
data = nil
|
44
|
+
|
45
|
+
response = connection(allow_guest: true).get(
|
46
|
+
"event_categories",
|
47
|
+
data,
|
48
|
+
headers,
|
49
|
+
&block
|
50
|
+
)
|
51
|
+
|
52
|
+
unpack(response, key: :event_categories)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module Scalingo
|
2
|
+
class Regional::Logs < API::Endpoint
|
3
|
+
def get(url, payload = {}, headers = nil, &block)
|
4
|
+
data = payload.compact
|
5
|
+
|
6
|
+
response = connection(allow_guest: true).get(
|
7
|
+
url,
|
8
|
+
data,
|
9
|
+
headers,
|
10
|
+
&block
|
11
|
+
)
|
12
|
+
|
13
|
+
unpack(response)
|
14
|
+
end
|
15
|
+
|
16
|
+
def archives(app_id, headers = nil, &block)
|
17
|
+
data = nil
|
18
|
+
|
19
|
+
response = connection.get(
|
20
|
+
"apps/#{app_id}/logs_archives",
|
21
|
+
data,
|
22
|
+
headers,
|
23
|
+
&block
|
24
|
+
)
|
25
|
+
|
26
|
+
unpack(response, key: :archives)
|
27
|
+
end
|
28
|
+
|
29
|
+
## Helper method to avoid having to manually chain two operations
|
30
|
+
def for(app_id, payload = {}, headers = nil, &block)
|
31
|
+
logs_response = scalingo.apps.logs_url(app_id)
|
32
|
+
|
33
|
+
return logs_response unless logs_response.successful?
|
34
|
+
|
35
|
+
get(logs_response.data, payload, headers, &block)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require "scalingo/api/endpoint"
|
2
|
+
require "active_support/core_ext/hash/indifferent_access"
|
3
|
+
|
4
|
+
module Scalingo
|
5
|
+
class Regional::Metrics < API::Endpoint
|
6
|
+
def for(app_id, payload = {}, headers = nil, &block)
|
7
|
+
payload = payload.with_indifferent_access
|
8
|
+
data = payload.except(:metric, :container_type, :container_index).compact
|
9
|
+
|
10
|
+
metric = payload[:metric]
|
11
|
+
url = "apps/#{app_id}/stats/#{metric}"
|
12
|
+
|
13
|
+
if payload[:container_type]
|
14
|
+
url = "#{url}/#{payload[:container_type]}"
|
15
|
+
url = "#{url}/#{payload[:container_index]}" if payload[:container_index]
|
16
|
+
end
|
17
|
+
|
18
|
+
response = connection.get(
|
19
|
+
url,
|
20
|
+
data,
|
21
|
+
headers,
|
22
|
+
&block
|
23
|
+
)
|
24
|
+
|
25
|
+
unpack(response)
|
26
|
+
end
|
27
|
+
|
28
|
+
def types(headers = nil, &block)
|
29
|
+
data = nil
|
30
|
+
|
31
|
+
response = connection(allow_guest: true).get(
|
32
|
+
"features/metrics",
|
33
|
+
data,
|
34
|
+
headers,
|
35
|
+
&block
|
36
|
+
)
|
37
|
+
|
38
|
+
unpack(response, key: :metrics)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
require "scalingo/api/endpoint"
|
2
|
+
|
3
|
+
module Scalingo
|
4
|
+
class Regional::Notifiers < API::Endpoint
|
5
|
+
def for(app_id, headers = nil, &block)
|
6
|
+
data = nil
|
7
|
+
|
8
|
+
response = connection.get(
|
9
|
+
"apps/#{app_id}/notifiers",
|
10
|
+
data,
|
11
|
+
headers,
|
12
|
+
&block
|
13
|
+
)
|
14
|
+
|
15
|
+
unpack(response, key: :notifiers)
|
16
|
+
end
|
17
|
+
|
18
|
+
def find(app_id, notifier_id, headers = nil, &block)
|
19
|
+
data = nil
|
20
|
+
|
21
|
+
response = connection.get(
|
22
|
+
"apps/#{app_id}/notifiers/#{notifier_id}",
|
23
|
+
data,
|
24
|
+
headers,
|
25
|
+
&block
|
26
|
+
)
|
27
|
+
|
28
|
+
unpack(response, key: :notifier)
|
29
|
+
end
|
30
|
+
|
31
|
+
def create(app_id, payload = {}, headers = nil, &block)
|
32
|
+
data = {notifier: payload}
|
33
|
+
|
34
|
+
response = connection.post(
|
35
|
+
"apps/#{app_id}/notifiers",
|
36
|
+
data,
|
37
|
+
headers,
|
38
|
+
&block
|
39
|
+
)
|
40
|
+
|
41
|
+
unpack(response, key: :notifier)
|
42
|
+
end
|
43
|
+
|
44
|
+
def update(app_id, notifier_id, payload = {}, headers = nil, &block)
|
45
|
+
data = {notifier: payload}
|
46
|
+
|
47
|
+
response = connection.patch(
|
48
|
+
"apps/#{app_id}/notifiers/#{notifier_id}",
|
49
|
+
data,
|
50
|
+
headers,
|
51
|
+
&block
|
52
|
+
)
|
53
|
+
|
54
|
+
unpack(response, key: :notifier)
|
55
|
+
end
|
56
|
+
|
57
|
+
def destroy(app_id, notifier_id, headers = nil, &block)
|
58
|
+
data = nil
|
59
|
+
|
60
|
+
response = connection.delete(
|
61
|
+
"apps/#{app_id}/notifiers/#{notifier_id}",
|
62
|
+
data,
|
63
|
+
headers,
|
64
|
+
&block
|
65
|
+
)
|
66
|
+
|
67
|
+
unpack(response)
|
68
|
+
end
|
69
|
+
|
70
|
+
def test(app_id, notifier_id, headers = nil, &block)
|
71
|
+
data = nil
|
72
|
+
|
73
|
+
response = connection.post(
|
74
|
+
"apps/#{app_id}/notifiers/#{notifier_id}/test",
|
75
|
+
data,
|
76
|
+
headers,
|
77
|
+
&block
|
78
|
+
)
|
79
|
+
|
80
|
+
unpack(response)
|
81
|
+
end
|
82
|
+
|
83
|
+
def platforms(headers = nil, &block)
|
84
|
+
data = nil
|
85
|
+
|
86
|
+
response = connection(allow_guest: true).get(
|
87
|
+
"notification_platforms",
|
88
|
+
data,
|
89
|
+
headers,
|
90
|
+
&block
|
91
|
+
)
|
92
|
+
|
93
|
+
unpack(response, key: :notification_platforms)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require "scalingo/api/endpoint"
|
2
|
+
|
3
|
+
module Scalingo
|
4
|
+
class Regional::Operations < API::Endpoint
|
5
|
+
def find(app_id, operation_id, headers = nil, &block)
|
6
|
+
data = nil
|
7
|
+
|
8
|
+
response = connection.get(
|
9
|
+
"apps/#{app_id}/operations/#{operation_id}",
|
10
|
+
data,
|
11
|
+
headers,
|
12
|
+
&block
|
13
|
+
)
|
14
|
+
|
15
|
+
unpack(response, key: :operation)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
require "scalingo/api/endpoint"
|
2
|
+
|
3
|
+
module Scalingo
|
4
|
+
class Regional::ScmRepoLinks < API::Endpoint
|
5
|
+
def show(app_id, headers = nil, &block)
|
6
|
+
data = nil
|
7
|
+
|
8
|
+
response = connection.get(
|
9
|
+
"apps/#{app_id}/scm_repo_link",
|
10
|
+
data,
|
11
|
+
headers,
|
12
|
+
&block
|
13
|
+
)
|
14
|
+
|
15
|
+
unpack(response, key: :scm_repo_link)
|
16
|
+
end
|
17
|
+
|
18
|
+
def create(app_id, payload = {}, headers = nil, &block)
|
19
|
+
data = {scm_repo_link: payload}
|
20
|
+
|
21
|
+
response = connection.post(
|
22
|
+
"apps/#{app_id}/scm_repo_link",
|
23
|
+
data,
|
24
|
+
headers,
|
25
|
+
&block
|
26
|
+
)
|
27
|
+
|
28
|
+
unpack(response, key: :scm_repo_link)
|
29
|
+
end
|
30
|
+
|
31
|
+
def update(app_id, payload = {}, headers = nil, &block)
|
32
|
+
data = {scm_repo_link: payload}
|
33
|
+
|
34
|
+
response = connection.patch(
|
35
|
+
"apps/#{app_id}/scm_repo_link",
|
36
|
+
data,
|
37
|
+
headers,
|
38
|
+
&block
|
39
|
+
)
|
40
|
+
|
41
|
+
unpack(response, key: :scm_repo_link)
|
42
|
+
end
|
43
|
+
|
44
|
+
def destroy(app_id, headers = nil, &block)
|
45
|
+
data = nil
|
46
|
+
|
47
|
+
response = connection.delete(
|
48
|
+
"apps/#{app_id}/scm_repo_link",
|
49
|
+
data,
|
50
|
+
headers,
|
51
|
+
&block
|
52
|
+
)
|
53
|
+
|
54
|
+
unpack(response, key: :scm_repo_link)
|
55
|
+
end
|
56
|
+
|
57
|
+
def deploy(app_id, branch, headers = nil, &block)
|
58
|
+
data = {branch: branch}
|
59
|
+
|
60
|
+
response = connection.post(
|
61
|
+
"apps/#{app_id}/scm_repo_link/manual_deploy",
|
62
|
+
data,
|
63
|
+
headers,
|
64
|
+
&block
|
65
|
+
)
|
66
|
+
|
67
|
+
unpack(response, key: :deployment)
|
68
|
+
end
|
69
|
+
|
70
|
+
def review_app(review_app, pull_request_id, headers = nil, &block)
|
71
|
+
data = {pull_request_id: pull_request_id}
|
72
|
+
|
73
|
+
response = connection.post(
|
74
|
+
"apps/#{app_id}/scm_repo_link/manual_review_app",
|
75
|
+
data,
|
76
|
+
headers,
|
77
|
+
&block
|
78
|
+
)
|
79
|
+
|
80
|
+
unpack(response, key: :review_app)
|
81
|
+
end
|
82
|
+
|
83
|
+
def branches(app_id, headers = nil, &block)
|
84
|
+
data = nil
|
85
|
+
|
86
|
+
response = connection.get(
|
87
|
+
"apps/#{app_id}/scm_repo_link/branches",
|
88
|
+
data,
|
89
|
+
headers,
|
90
|
+
&block
|
91
|
+
)
|
92
|
+
|
93
|
+
unpack(response, key: :branches)
|
94
|
+
end
|
95
|
+
|
96
|
+
def pulls(app_id, headers = nil, &block)
|
97
|
+
data = nil
|
98
|
+
|
99
|
+
response = connection.get(
|
100
|
+
"apps/#{app_id}/scm_repo_link/pulls",
|
101
|
+
data,
|
102
|
+
headers,
|
103
|
+
&block
|
104
|
+
)
|
105
|
+
|
106
|
+
unpack(response, key: :pulls)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|