Class: Morpheus::InstancesInterface
- Inherits:
-
APIClient
- Object
- APIClient
- Morpheus::InstancesInterface
- Defined in:
- lib/morpheus/api/instances_interface.rb
Instance Method Summary collapse
- #action(id, action_code, payload = {}) ⇒ Object
- #apply_security_groups(id, payload) ⇒ Object
- #available_actions(id) ⇒ Object
- #backup(id, server = true) ⇒ Object
- #backups(id, params) ⇒ Object
- #clone(id, payload) ⇒ Object
- #containers(instance_id, params = {}) ⇒ Object
- #create(payload) ⇒ Object
- #create_env(id, payload = {}) ⇒ Object
- #del_env(id, name) ⇒ Object
- #destroy(id, params = {}) ⇒ Object
- #eject(id, params = {}) ⇒ Object
- #firewall_disable(id) ⇒ Object
- #firewall_enable(id) ⇒ Object
- #get(params = {}) ⇒ Object
- #get_envs(id, params = {}) ⇒ 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(params = {}) ⇒ 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, payload) ⇒ 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
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
130 131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/morpheus/api/instances_interface.rb', line 130 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 headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#apply_security_groups(id, payload) ⇒ Object
207 208 209 210 211 212 |
# File 'lib/morpheus/api/instances_interface.rb', line 207 def apply_security_groups(id, payload) url = "#{@base_url}/api/instances/#{id}/security-groups" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :post, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#available_actions(id) ⇒ Object
116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/morpheus/api/instances_interface.rb', line 116 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 headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#backup(id, server = true) ⇒ Object
165 166 167 168 169 170 |
# File 'lib/morpheus/api/instances_interface.rb', line 165 def backup(id,server=true) url = "#{@base_url}/api/instances/#{id}/backup" headers = {:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#backups(id, params) ⇒ Object
172 173 174 175 176 177 |
# File 'lib/morpheus/api/instances_interface.rb', line 172 def backups(id, params) url = "#{@base_url}/api/instances/#{id}/backups" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#clone(id, payload) ⇒ Object
179 180 181 182 183 184 |
# File 'lib/morpheus/api/instances_interface.rb', line 179 def clone(id, payload) url = "#{@base_url}/api/instances/#{id}/clone" headers = {:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#containers(instance_id, params = {}) ⇒ Object
227 228 229 230 231 232 |
# File 'lib/morpheus/api/instances_interface.rb', line 227 def containers(instance_id, params={}) url = "#{@base_url}/api/instances/#{instance_id}/containers" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#create(payload) ⇒ Object
50 51 52 53 54 55 |
# File 'lib/morpheus/api/instances_interface.rb', line 50 def create(payload) url = "#{@base_url}/api/instances" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :post, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#create_env(id, payload = {}) ⇒ Object
36 37 38 39 40 41 |
# File 'lib/morpheus/api/instances_interface.rb', line 36 def create_env(id, payload={}) url = "#{@base_url}/api/instances/#{id}/envs" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :post, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#del_env(id, name) ⇒ Object
43 44 45 46 47 48 |
# File 'lib/morpheus/api/instances_interface.rb', line 43 def del_env(id, name) url = "#{@base_url}/api/instances/#{id}/envs/#{name}" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :delete, url: url, headers: headers} execute(opts) end |
#destroy(id, params = {}) ⇒ Object
64 65 66 67 68 69 |
# File 'lib/morpheus/api/instances_interface.rb', line 64 def destroy(id, params = {}) url = "#{@base_url}/api/instances/#{id}" headers = {:params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :delete, url: url, headers: headers} execute(opts) end |
#eject(id, params = {}) ⇒ Object
104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/morpheus/api/instances_interface.rb', line 104 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 headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#firewall_disable(id) ⇒ Object
186 187 188 189 190 191 |
# File 'lib/morpheus/api/instances_interface.rb', line 186 def firewall_disable(id) url = "#{@base_url}/api/instances/#{id}/security-groups/disable" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#firewall_enable(id) ⇒ Object
193 194 195 196 197 198 |
# File 'lib/morpheus/api/instances_interface.rb', line 193 def firewall_enable(id) url = "#{@base_url}/api/instances/#{id}/security-groups/enable" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#get(params = {}) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/morpheus/api/instances_interface.rb', line 11 def get(params={}) url = "#{@base_url}/api/instances" headers = { params: {}, authorization: "Bearer #{@access_token}" } if params.is_a?(Hash) headers[:params].merge!(params) elsif params.is_a?(Numeric) url = "#{@base_url}/api/instances/#{params}" elsif params.is_a?(String) headers[:params]['name'] = params end opts = {method: :get, url: url, headers: headers} execute(opts) end |
#get_envs(id, params = {}) ⇒ Object
29 30 31 32 33 34 |
# File 'lib/morpheus/api/instances_interface.rb', line 29 def get_envs(id, params={}) url = "#{@base_url}/api/instances/#{id}/envs" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#history(id, params = {}) ⇒ Object
269 270 271 272 273 274 |
# File 'lib/morpheus/api/instances_interface.rb', line 269 def history(id, params={}) url = "#{@base_url}/api/instances/#{id}/history" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#history_details(id, process_id, params = {}) ⇒ Object
276 277 278 279 280 281 |
# File 'lib/morpheus/api/instances_interface.rb', line 276 def history_details(id, process_id, params={}) url = "#{@base_url}/api/instances/#{id}/history/#{process_id}" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#history_event_details(id, process_event_id, params = {}) ⇒ Object
283 284 285 286 287 288 |
# File 'lib/morpheus/api/instances_interface.rb', line 283 def history_event_details(id, process_event_id, params={}) url = "#{@base_url}/api/instances/#{id}/history/events/#{process_event_id}" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#import_snapshot(id, params = {}) ⇒ Object
213 214 215 216 217 218 |
# File 'lib/morpheus/api/instances_interface.rb', line 213 def import_snapshot(id, params={}) url = "#{@base_url}/api/instances/#{id}/import-snapshot" headers = {:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#list(params = {}) ⇒ Object
25 26 27 |
# File 'lib/morpheus/api/instances_interface.rb', line 25 def list(params={}) get(params) end |
#remove_load_balancer(id, payload = {}) ⇒ Object
255 256 257 258 259 260 |
# File 'lib/morpheus/api/instances_interface.rb', line 255 def remove_load_balancer(id, payload={}) url = "#{@base_url}/api/instances/#{id}/load-balancer" headers = {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :delete, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#resize(id, payload) ⇒ Object
151 152 153 154 155 156 |
# File 'lib/morpheus/api/instances_interface.rb', line 151 def resize(id,payload) url = "#{@base_url}/api/instances/#{id}/resize" headers = { :params => {},:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers,payload: payload.to_json} execute(opts) end |
#restart(id, params = {}) ⇒ Object
85 86 87 88 89 90 |
# File 'lib/morpheus/api/instances_interface.rb', line 85 def restart(id, params={}) url = "#{@base_url}/api/instances/#{id}/restart" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#security_groups(id) ⇒ Object
200 201 202 203 204 205 |
# File 'lib/morpheus/api/instances_interface.rb', line 200 def security_groups(id) url = "#{@base_url}/api/instances/#{id}/security-groups" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#service_plans(params = {}) ⇒ Object
220 221 222 223 224 225 |
# File 'lib/morpheus/api/instances_interface.rb', line 220 def service_plans(params={}) url = "#{@base_url}/api/instances/service-plans" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#start(id, params = {}) ⇒ Object
78 79 80 81 82 83 |
# File 'lib/morpheus/api/instances_interface.rb', line 78 def start(id, params={}) url = "#{@base_url}/api/instances/#{id}/start" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#stop(id, params = {}) ⇒ Object
71 72 73 74 75 76 |
# File 'lib/morpheus/api/instances_interface.rb', line 71 def stop(id, params={}) url = "#{@base_url}/api/instances/#{id}/stop" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#suspend(id, params = {}) ⇒ Object
92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/morpheus/api/instances_interface.rb', line 92 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 headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers} execute(opts) end |
#threshold(id, params = {}) ⇒ Object
234 235 236 237 238 239 |
# File 'lib/morpheus/api/instances_interface.rb', line 234 def threshold(id, params={}) url = "#{@base_url}/api/instances/#{id}/threshold" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#update(id, payload) ⇒ Object
57 58 59 60 61 62 |
# File 'lib/morpheus/api/instances_interface.rb', line 57 def update(id, payload) url = "#{@base_url}/api/instances/#{id}" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#update_load_balancer(id, payload) ⇒ Object
248 249 250 251 252 253 |
# File 'lib/morpheus/api/instances_interface.rb', line 248 def update_load_balancer(id, payload) url = "#{@base_url}/api/instances/#{id}/load-balancer" headers = {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#update_notes(id, payload) ⇒ Object
262 263 264 265 266 267 |
# File 'lib/morpheus/api/instances_interface.rb', line 262 def update_notes(id, payload) url = "#{@base_url}/api/instances/#{id}/notes" headers = {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#update_threshold(id, payload) ⇒ Object
241 242 243 244 245 246 |
# File 'lib/morpheus/api/instances_interface.rb', line 241 def update_threshold(id, payload) url = "#{@base_url}/api/instances/#{id}/threshold" headers = {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#volumes(id) ⇒ Object
144 145 146 147 148 149 |
# File 'lib/morpheus/api/instances_interface.rb', line 144 def volumes(id) url = "#{@base_url}/api/instances/#{id}/volumes" headers = { :params => {},:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#workflow(id, task_set_id, payload) ⇒ Object
158 159 160 161 162 163 |
# File 'lib/morpheus/api/instances_interface.rb', line 158 def workflow(id,task_set_id,payload) url = "#{@base_url}/api/instances/#{id}/workflow" headers = { :params => {:taskSetId => task_set_id},:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers,payload: payload.to_json} execute(opts) end |