class Fog::Compute::Ecloud::Networks

Public Instance Methods

all() click to toggle source
# File lib/fog/compute/ecloud/models/networks.rb, line 11
def all
  body = service.get_networks(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) click to toggle source
# File lib/fog/compute/ecloud/models/networks.rb, line 22
def get(uri)
  if data = service.get_network(uri)
    new(data.body)
  end
rescue ServiceError => e
  raise e unless e.status_code == 404
  nil
end