Class: Morpheus::ServersInterface

Inherits:
APIClient
  • Object
show all
Defined in:
lib/morpheus/api/servers_interface.rb

Instance Method Summary collapse

Constructor Details

#initialize(access_token, refresh_token, expires_at = nil, base_url = nil) ⇒ ServersInterface

Returns a new instance of ServersInterface.



4
5
6
7
8
9
# File 'lib/morpheus/api/servers_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

#assign_account(serverId, payload = {}) ⇒ Object



97
98
99
100
101
102
# File 'lib/morpheus/api/servers_interface.rb', line 97

def (serverId,payload = {})
  url = "#{@base_url}/api/servers/#{serverId}/assign-account"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#create(options) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/morpheus/api/servers_interface.rb', line 29

def create(options)
  url = "#{@base_url}/api/servers"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  opts = {method: :post, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#destroy(id, params = {}) ⇒ Object



111
112
113
114
115
116
# File 'lib/morpheus/api/servers_interface.rb', line 111

def destroy(id, params={})
  url = "#{@base_url}/api/servers/#{id}"
  headers = { :params => params,:authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :delete, url: url, headers: headers}
  execute(opts)
end

#get(options = nil) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/morpheus/api/servers_interface.rb', line 11

def get(options=nil)
  url = "#{@base_url}/api/servers"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }
  if options.is_a?(Hash)
    headers[:params].merge!(options)
  elsif options.is_a?(Numeric)
    url = "#{@base_url}/api/servers/#{options}"
  elsif options.is_a?(String)
    headers[:params]['name'] = options
  end
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#install_agent(serverId, payload = {}) ⇒ Object



69
70
71
72
73
74
# File 'lib/morpheus/api/servers_interface.rb', line 69

def install_agent(serverId,payload = {})
  url = "#{@base_url}/api/servers/#{serverId}/install-agent"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#list(options = {}) ⇒ Object



25
26
27
# File 'lib/morpheus/api/servers_interface.rb', line 25

def list(options={})
  get(options)
end

#reinitialize(serverId, payload = {}) ⇒ Object



90
91
92
93
94
95
# File 'lib/morpheus/api/servers_interface.rb', line 90

def reinitialize(serverId,payload = {})
  url = "#{@base_url}/api/servers/#{serverId}/reinitialize"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#reprovision(serverId, payload = {}) ⇒ Object



83
84
85
86
87
88
# File 'lib/morpheus/api/servers_interface.rb', line 83

def reprovision(serverId,payload = {})
  url = "#{@base_url}/api/servers/#{serverId}/reprovision"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#resize(id, payload) ⇒ Object



132
133
134
135
136
137
# File 'lib/morpheus/api/servers_interface.rb', line 132

def resize(id,payload)
  url = "#{@base_url}/api/servers/#{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

#service_plans(params) ⇒ Object



118
119
120
121
122
123
# File 'lib/morpheus/api/servers_interface.rb', line 118

def service_plans(params)
  url = "#{@base_url}/api/servers/service-plans"
  headers = { params: params, authorization: "Bearer #{@access_token}" }
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#start(serverId, payload = {}, params = {}) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
# File 'lib/morpheus/api/servers_interface.rb', line 57

def start(serverId,payload = {}, params = {})
  url = "#{@base_url}/api/servers/start"
  if serverId.is_a?(Array)
    params['ids'] = serverId
  else
    url = "#{@base_url}/api/servers/#{serverId}/start"
  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

#stop(serverId, payload = {}, params = {}) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
# File 'lib/morpheus/api/servers_interface.rb', line 45

def stop(serverId,payload = {}, params={})
  url = "#{@base_url}/api/servers/stop"
  if serverId.is_a?(Array)
    params['ids'] = serverId
  else
    url = "#{@base_url}/api/servers/#{serverId}/stop"
  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

#update(serverId, options) ⇒ Object



37
38
39
40
41
42
43
# File 'lib/morpheus/api/servers_interface.rb', line 37

def update(serverId, options)
  url = "#{@base_url}/api/servers/#{serverId}"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#upgrade(serverId, payload = {}) ⇒ Object



76
77
78
79
80
81
# File 'lib/morpheus/api/servers_interface.rb', line 76

def upgrade(serverId,payload = {})
  url = "#{@base_url}/api/servers/#{serverId}/upgrade"
  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



125
126
127
128
129
130
# File 'lib/morpheus/api/servers_interface.rb', line 125

def volumes(id)
  url = "#{@base_url}/api/servers/#{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



104
105
106
107
108
109
# File 'lib/morpheus/api/servers_interface.rb', line 104

def workflow(id,task_set_id,payload)
  url = "#{@base_url}/api/servers/#{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