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/rackspace/models/block_storage/snapshots.rb
2013-01-07 21:01:20 +00:00

25 lines
566 B
Ruby

require 'fog/core/collection'
require 'fog/rackspace/models/block_storage/snapshot'
module Fog
module Rackspace
class BlockStorage
class Snapshots < Fog::Collection
model Fog::Rackspace::BlockStorage::Snapshot
def all
data = service.list_snapshots.body['snapshots']
load(data)
end
def get(snapshot_id)
data = service.get_snapshot(snapshot_id).body['snapshot']
new(data)
rescue Fog::Rackspace::BlockStorage::NotFound
nil
end
end
end
end
end