mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
9596bea466
Helps to use the correct request.
29 lines
No EOL
584 B
Ruby
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 |