# File lib/fog/ecloud/models/compute/nodes.rb, line 13defallcheck_href!( :messages =>"the Nodes href of the Internet Service you want to enumerate" )
ifdata = connection.get_nodes(href).body[:NodeService]
load(data)
endend
get(uri)click to toggle source
# File lib/fog/ecloud/models/compute/nodes.rb, line 20defget(uri)
ifdata = connection.get_node(uri)
new(data.body)
endrescueFog::Errors::NotFoundnilend