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/brightbox/models/compute/server_groups.rb
Paul Thornthwaite 9596bea466 [compute|brightbox] Fixed server_groups.get
Helps to use the correct request.
2011-09-21 09:45:31 +01:00

29 lines
No EOL
584 B
Ruby

require 'fog/core/collection'
require 'fog/brightbox/models/compute/server_group'
module Fog
module Compute
class Brightbox
class ServerGroups < Fog::Collection
model Fog::Compute::Brightbox::ServerGroup
def all
data = connection.list_server_groups
load(data)
end
def get(identifier)
return nil if identifier.nil? || identifier == ""
data = connection.get_server_group(identifier)
new(data)
rescue Excon::Errors::NotFound
nil
end
end
end
end
end