Class: Fog::Compute::Ecloud::Networks

Inherits:
Ecloud::Collection show all
Defined in:
lib/fog/compute/ecloud/models/networks.rb

Instance Method Summary collapse

Methods inherited from Ecloud::Collection

#check_href!, #load

Instance Method Details

#allObject



11
12
13
14
15
16
17
18
19
20
# File 'lib/fog/compute/ecloud/models/networks.rb', line 11

def all
  body = service.get_networks(self.href).body
  body = body[:Networks] ? body[:Networks][:Network] : body[:Network]
  data = case body
         when NilClass then []
         when Array then body
         when Hash then [body]
         end
  load(data)
end

#get(uri) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/fog/compute/ecloud/models/networks.rb', line 22

def get(uri)
  if data = service.get_network(uri)
    new(data.body)
  end
rescue Fog::Errors::NotFound
  nil
end