1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ecloud/models/compute/groups.rb
2013-01-07 21:25:06 +00:00

39 lines
858 B
Ruby

require 'fog/ecloud/models/compute/group'
module Fog
module Compute
class Ecloud
class Groups < Fog::Ecloud::Collection
identity :href
model Fog::Compute::Ecloud::Group
def all
data = service.get_groups(href).body
data = if data == ""
""
else
data[:Groups] ? data[:Groups][:Group] : data
end
if data == "" || !data.is_a?(Array) && data[:type] == "application/vnd.tmrk.cloud.layoutRow"
nil
else
load(data)
end
end
def get(uri)
data = service.get_group(uri).body
if data == ""
nil
else
new(data)
end
rescue Excon::Errors::NotFound
nil
end
end
end
end
end