2011-08-18 12:16:58 -04:00
|
|
|
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
|
2012-12-22 18:29:21 -05:00
|
|
|
data = service.list_server_groups
|
2011-08-18 12:16:58 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(identifier)
|
|
|
|
return nil if identifier.nil? || identifier == ""
|
2012-12-22 18:29:21 -05:00
|
|
|
data = service.get_server_group(identifier)
|
2011-08-18 12:16:58 -04:00
|
|
|
new(data)
|
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
2012-12-22 18:29:21 -05:00
|
|
|
end
|