mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
32 lines
756 B
Ruby
32 lines
756 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/voxel/models/compute/server'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Voxel
|
|
class Servers < Fog::Collection
|
|
|
|
model Fog::Compute::Voxel::Server
|
|
|
|
def all
|
|
data = connection.devices_list.body['devices'].select {|device| device['type']['id'] == '3'}
|
|
load(data)
|
|
end
|
|
|
|
def get(device_id)
|
|
if device_id && server = connection.devices_list(device_id).body['devices']
|
|
new(server.first)
|
|
end
|
|
rescue Fog::Service::Error => error
|
|
if error.message == "The device_id passed in can't be matched to a valid device."
|
|
nil
|
|
else
|
|
raise error
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|