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

40 lines
858 B
Ruby
Raw Normal View History

2012-06-07 12:50:11 -04:00
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
2012-11-27 19:57:16 -05:00
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
2012-06-07 12:50:11 -04:00
end
def get(uri)
data = service.get_group(uri).body
2012-11-27 19:57:16 -05:00
if data == ""
nil
else
new(data)
2012-06-07 12:50:11 -04:00
end
2012-11-27 19:57:16 -05:00
rescue Excon::Errors::NotFound
2012-06-07 12:50:11 -04:00
nil
end
end
end
end
end