2011-08-24 21:29:14 -04:00
|
|
|
require 'fog/ecloud/models/compute/node'
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Ecloud
|
2011-02-17 13:44:46 -05:00
|
|
|
class Nodes < Fog::Ecloud::Collection
|
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
identity :href
|
2011-02-17 13:44:46 -05:00
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
model Fog::Compute::Ecloud::Node
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
def all
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.get_nodes(href).body
|
2012-06-07 12:50:11 -04:00
|
|
|
if data[:NodeServices]
|
|
|
|
load(data[:NodeServices][:NodeService])
|
|
|
|
else
|
|
|
|
load([])
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri)
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.get_node(uri).body
|
2012-11-27 19:57:16 -05:00
|
|
|
if data == ""
|
|
|
|
new({})
|
|
|
|
else
|
|
|
|
new(data)
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
def create(options)
|
|
|
|
options[:uri] = "/cloudapi/ecloud/nodeServices/internetServices/#{internet_service_id}/action/createNodeService"
|
|
|
|
options[:protocol] ||= "TCP"
|
|
|
|
options[:enabled] ||= true
|
|
|
|
options[:description] ||= ""
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.node_service_create(options).body
|
2012-06-07 12:50:11 -04:00
|
|
|
object = new(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def internet_service_id
|
|
|
|
href.scan(/\d+/)[0]
|
|
|
|
end
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|