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/serverlove/models/compute/drives.rb
2012-04-27 14:43:52 +01:00

25 lines
415 B
Ruby

require 'fog/core/collection'
require 'fog/serverlove/models/compute/drive'
module Fog
module Compute
class Serverlove
class Drives < Fog::Collection
model Fog::Compute::Serverlove::Drive
def all
data = connection.get_drives.body
load(data)
end
def get(drive_id)
connection.get_drive(drive_id)
end
end
end
end
end