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/cloudstack/models/compute/snapshots.rb
2013-03-26 18:27:42 +03:00

25 lines
568 B
Ruby

require 'fog/core/collection'
require 'fog/cloudstack/models/compute/snapshot'
module Fog
module Compute
class Cloudstack
class Snapshots < Fog::Collection
model Fog::Compute::Cloudstack::Snapshot
def all
data = service.list_snapshots["listsnapshotsresponse"]["snapshot"] || []
load(data)
end
def get(snapshot_id)
snapshot = service.list_snapshots('id' => snapshot_id)["listsnapshotsresponse"]["snapshot"].first
new(snapshot) if snapshot
end
end
end
end
end