Class: Morpheus::InstancesInterface
Instance Method Summary
collapse
-
#action(id, action_code, payload = {}) ⇒ Object
-
#apply_security_groups(id, options) ⇒ Object
-
#available_actions(id) ⇒ Object
-
#backup(id, server = true) ⇒ Object
-
#backups(id, params) ⇒ Object
-
#clone(id, options) ⇒ Object
-
#containers(instance_id, params = {}) ⇒ Object
-
#create(options) ⇒ Object
-
#create_env(id, options) ⇒ Object
-
#del_env(id, name) ⇒ Object
-
#destroy(id, params = {}) ⇒ Object
-
#eject(id, params = {}) ⇒ Object
-
#firewall_disable(id) ⇒ Object
-
#firewall_enable(id) ⇒ Object
-
#get(options = nil) ⇒ Object
-
#get_envs(id, options = nil) ⇒ Object
-
#history(id, params = {}) ⇒ Object
-
#history_details(id, process_id, params = {}) ⇒ Object
-
#history_event_details(id, process_event_id, params = {}) ⇒ Object
-
#import_snapshot(id, params = {}) ⇒ Object
-
#initialize(access_token, refresh_token, expires_at = nil, base_url = nil) ⇒ InstancesInterface
constructor
A new instance of InstancesInterface.
-
#list(options = {}) ⇒ Object
-
#remove_load_balancer(id, payload = {}) ⇒ Object
-
#resize(id, payload) ⇒ Object
-
#restart(id, params = {}) ⇒ Object
-
#security_groups(id) ⇒ Object
-
#service_plans(params) ⇒ Object
-
#start(id, params = {}) ⇒ Object
-
#stop(id, params = {}) ⇒ Object
-
#suspend(id, params = {}) ⇒ Object
-
#threshold(id, params = {}) ⇒ Object
-
#update(id, options) ⇒ Object
-
#update_load_balancer(id, payload) ⇒ Object
-
#update_notes(id, payload) ⇒ Object
-
#update_threshold(id, payload) ⇒ Object
-
#volumes(id) ⇒ Object
-
#workflow(id, task_set_id, payload) ⇒ Object
Methods inherited from APIClient
#account_groups, #accounts, #app_templates, #apps, #archive_buckets, #archive_files, #auth, #blueprints, #cloud_datastores, #cloud_policies, #clouds, #custom_instance_types, #cypher, #dashboard, #deploy, #deployments, #dry, #dry_run, #execute, #execute_schedules, #execution_request, #file_copy_request, #group_policies, #groups, #image_builder, #instance_types, #instances, #key_pairs, #library_container_scripts, #library_container_templates, #library_container_types, #library_container_upgrades, #library_instance_types, #library_layouts, #license, #load_balancers, #logs, #monitoring, #network_domains, #network_groups, #network_pool_servers, #network_pools, #network_proxies, #network_services, #networks, #option_type_lists, #option_types, #options, #packages, #policies, #power_schedules, #processes, #provision_types, #roles, #security_group_rules, #servers, #set_ssl_verification_enabled, #setup, #ssl_verification_enabled?, #storage_providers, #task_sets, #tasks, #user_groups, #user_settings, #user_sources, #users, #virtual_images, #whoami
Constructor Details
#initialize(access_token, refresh_token, expires_at = nil, base_url = nil) ⇒ InstancesInterface
Returns a new instance of InstancesInterface.
4
5
6
7
8
9
|
# File 'lib/morpheus/api/instances_interface.rb', line 4
def initialize(access_token, refresh_token,expires_at = nil, base_url=nil)
@access_token = access_token
@refresh_token = refresh_token
@base_url = base_url
@expires_at = expires_at
end
|
Instance Method Details
#action(id, action_code, payload = {}) ⇒ Object
134
135
136
137
138
139
140
141
142
143
144
145
146
|
# File 'lib/morpheus/api/instances_interface.rb', line 134
def action(id, action_code, payload={})
url, params = "", {}
if id.is_a?(Array)
url = "#{@base_url}/api/instances/action"
params = {ids: id, code: action_code}
else
url = "#{@base_url}/api/instances/#{id}/action"
params = {code: action_code}
end
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#apply_security_groups(id, options) ⇒ Object
212
213
214
215
216
217
218
|
# File 'lib/morpheus/api/instances_interface.rb', line 212
def apply_security_groups(id, options)
url = "#{@base_url}/api/instances/#{id}/security-groups"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#available_actions(id) ⇒ Object
120
121
122
123
124
125
126
127
128
129
130
131
132
|
# File 'lib/morpheus/api/instances_interface.rb', line 120
def available_actions(id)
url, params = "", {}
if id.is_a?(Array)
url = "#{@base_url}/api/instances/actions"
params = {ids: id}
else
url = "#{@base_url}/api/instances/#{id}/actions"
params = {}
end
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#backup(id, server = true) ⇒ Object
169
170
171
172
173
174
|
# File 'lib/morpheus/api/instances_interface.rb', line 169
def backup(id,server=true)
url = "#{@base_url}/api/instances/#{id}/backup"
= {:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#backups(id, params) ⇒ Object
176
177
178
179
180
181
|
# File 'lib/morpheus/api/instances_interface.rb', line 176
def backups(id, params)
url = "#{@base_url}/api/instances/#{id}/backups"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#clone(id, options) ⇒ Object
183
184
185
186
187
188
189
|
# File 'lib/morpheus/api/instances_interface.rb', line 183
def clone(id, options)
url = "#{@base_url}/api/instances/#{id}/clone"
= {:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#containers(instance_id, params = {}) ⇒ Object
233
234
235
236
237
238
|
# File 'lib/morpheus/api/instances_interface.rb', line 233
def containers(instance_id, params={})
url = "#{@base_url}/api/instances/#{instance_id}/containers"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#create(options) ⇒ Object
52
53
54
55
56
57
58
|
# File 'lib/morpheus/api/instances_interface.rb', line 52
def create(options)
url = "#{@base_url}/api/instances"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#create_env(id, options) ⇒ Object
37
38
39
40
41
42
43
|
# File 'lib/morpheus/api/instances_interface.rb', line 37
def create_env(id, options)
url = "#{@base_url}/api/instances/#{id}/envs"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#del_env(id, name) ⇒ Object
45
46
47
48
49
50
|
# File 'lib/morpheus/api/instances_interface.rb', line 45
def del_env(id, name)
url = "#{@base_url}/api/instances/#{id}/envs/#{name}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: }
execute(opts)
end
|
#destroy(id, params = {}) ⇒ Object
68
69
70
71
72
73
|
# File 'lib/morpheus/api/instances_interface.rb', line 68
def destroy(id, params = {})
url = "#{@base_url}/api/instances/#{id}"
= {:params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: }
execute(opts)
end
|
#eject(id, params = {}) ⇒ Object
108
109
110
111
112
113
114
115
116
117
118
|
# File 'lib/morpheus/api/instances_interface.rb', line 108
def eject(id, params={})
url = "#{@base_url}/api/instances/eject"
if id.is_a?(Array)
params['ids'] = id
else
url = "#{@base_url}/api/instances/#{id}/eject"
end
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#firewall_disable(id) ⇒ Object
191
192
193
194
195
196
|
# File 'lib/morpheus/api/instances_interface.rb', line 191
def firewall_disable(id)
url = "#{@base_url}/api/instances/#{id}/security-groups/disable"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#firewall_enable(id) ⇒ Object
198
199
200
201
202
203
|
# File 'lib/morpheus/api/instances_interface.rb', line 198
def firewall_enable(id)
url = "#{@base_url}/api/instances/#{id}/security-groups/enable"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#get(options = nil) ⇒ Object
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/morpheus/api/instances_interface.rb', line 11
def get(options=nil)
url = "#{@base_url}/api/instances"
= { params: {}, authorization: "Bearer #{@access_token}" }
if options.is_a?(Hash)
[:params].merge!(options)
elsif options.is_a?(Numeric)
url = "#{@base_url}/api/instances/#{options}"
elsif options.is_a?(String)
[:params]['name'] = options
end
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#get_envs(id, options = nil) ⇒ Object
30
31
32
33
34
35
|
# File 'lib/morpheus/api/instances_interface.rb', line 30
def get_envs(id, options=nil)
url = "#{@base_url}/api/instances/#{id}/envs"
= { params: {}, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#history(id, params = {}) ⇒ Object
275
276
277
278
279
280
|
# File 'lib/morpheus/api/instances_interface.rb', line 275
def history(id, params={})
url = "#{@base_url}/api/instances/#{id}/history"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#history_details(id, process_id, params = {}) ⇒ Object
282
283
284
285
286
287
|
# File 'lib/morpheus/api/instances_interface.rb', line 282
def history_details(id, process_id, params={})
url = "#{@base_url}/api/instances/#{id}/history/#{process_id}"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#history_event_details(id, process_event_id, params = {}) ⇒ Object
289
290
291
292
293
294
|
# File 'lib/morpheus/api/instances_interface.rb', line 289
def history_event_details(id, process_event_id, params={})
url = "#{@base_url}/api/instances/#{id}/history/events/#{process_event_id}"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#import_snapshot(id, params = {}) ⇒ Object
219
220
221
222
223
224
|
# File 'lib/morpheus/api/instances_interface.rb', line 219
def import_snapshot(id, params={})
url = "#{@base_url}/api/instances/#{id}/import-snapshot"
= {:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#list(options = {}) ⇒ Object
26
27
28
|
# File 'lib/morpheus/api/instances_interface.rb', line 26
def list(options={})
get(options)
end
|
#remove_load_balancer(id, payload = {}) ⇒ Object
261
262
263
264
265
266
|
# File 'lib/morpheus/api/instances_interface.rb', line 261
def remove_load_balancer(id, payload={})
url = "#{@base_url}/api/instances/#{id}/load-balancer"
= {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#resize(id, payload) ⇒ Object
155
156
157
158
159
160
|
# File 'lib/morpheus/api/instances_interface.rb', line 155
def resize(id,payload)
url = "#{@base_url}/api/instances/#{id}/resize"
= { :params => {},:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: ,payload: payload.to_json}
execute(opts)
end
|
#restart(id, params = {}) ⇒ Object
89
90
91
92
93
94
|
# File 'lib/morpheus/api/instances_interface.rb', line 89
def restart(id, params={})
url = "#{@base_url}/api/instances/#{id}/restart"
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#security_groups(id) ⇒ Object
205
206
207
208
209
210
|
# File 'lib/morpheus/api/instances_interface.rb', line 205
def security_groups(id)
url = "#{@base_url}/api/instances/#{id}/security-groups"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#service_plans(params) ⇒ Object
226
227
228
229
230
231
|
# File 'lib/morpheus/api/instances_interface.rb', line 226
def service_plans(params)
url = "#{@base_url}/api/instances/service-plans"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#start(id, params = {}) ⇒ Object
82
83
84
85
86
87
|
# File 'lib/morpheus/api/instances_interface.rb', line 82
def start(id, params={})
url = "#{@base_url}/api/instances/#{id}/start"
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#stop(id, params = {}) ⇒ Object
75
76
77
78
79
80
|
# File 'lib/morpheus/api/instances_interface.rb', line 75
def stop(id, params={})
url = "#{@base_url}/api/instances/#{id}/stop"
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#suspend(id, params = {}) ⇒ Object
96
97
98
99
100
101
102
103
104
105
106
|
# File 'lib/morpheus/api/instances_interface.rb', line 96
def suspend(id, params={})
url = "#{@base_url}/api/instances/suspend"
if id.is_a?(Array)
params['ids'] = id
else
url = "#{@base_url}/api/instances/#{id}/suspend"
end
= { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: }
execute(opts)
end
|
#threshold(id, params = {}) ⇒ Object
240
241
242
243
244
245
|
# File 'lib/morpheus/api/instances_interface.rb', line 240
def threshold(id, params={})
url = "#{@base_url}/api/instances/#{id}/threshold"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#update(id, options) ⇒ Object
60
61
62
63
64
65
66
|
# File 'lib/morpheus/api/instances_interface.rb', line 60
def update(id, options)
url = "#{@base_url}/api/instances/#{id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_load_balancer(id, payload) ⇒ Object
254
255
256
257
258
259
|
# File 'lib/morpheus/api/instances_interface.rb', line 254
def update_load_balancer(id, payload)
url = "#{@base_url}/api/instances/#{id}/load-balancer"
= {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_notes(id, payload) ⇒ Object
268
269
270
271
272
273
|
# File 'lib/morpheus/api/instances_interface.rb', line 268
def update_notes(id, payload)
url = "#{@base_url}/api/instances/#{id}/notes"
= {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_threshold(id, payload) ⇒ Object
247
248
249
250
251
252
|
# File 'lib/morpheus/api/instances_interface.rb', line 247
def update_threshold(id, payload)
url = "#{@base_url}/api/instances/#{id}/threshold"
= {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#volumes(id) ⇒ Object
148
149
150
151
152
153
|
# File 'lib/morpheus/api/instances_interface.rb', line 148
def volumes(id)
url = "#{@base_url}/api/instances/#{id}/volumes"
= { :params => {},:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#workflow(id, task_set_id, payload) ⇒ Object
162
163
164
165
166
167
|
# File 'lib/morpheus/api/instances_interface.rb', line 162
def workflow(id,task_set_id,payload)
url = "#{@base_url}/api/instances/#{id}/workflow"
= { :params => {:taskSetId => task_set_id},:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: ,payload: payload.to_json}
execute(opts)
end
|