mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
629 B
Ruby
35 lines
629 B
Ruby
require 'fog/collection'
|
|
require 'fog/slicehost/models/server'
|
|
|
|
module Fog
|
|
module Slicehost
|
|
|
|
module Collections
|
|
def servers
|
|
Fog::Slicehost::Servers.new(:connection => self)
|
|
end
|
|
end
|
|
|
|
class Servers < Fog::Collection
|
|
|
|
model Fog::Slicehost::Server
|
|
|
|
def all
|
|
data = connection.get_slices.body['slices']
|
|
load(data)
|
|
end
|
|
|
|
def get(server_id)
|
|
if server_id && server = connection.get_slice(server_id).body
|
|
new(server)
|
|
elsif !server_id
|
|
nil
|
|
end
|
|
rescue Excon::Errors::Forbidden
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|