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/cloudsigma/models/snapshots.rb

27 lines
568 B
Ruby
Raw Permalink Normal View History

require 'fog/core/collection'
require 'fog/cloudsigma/models/snapshot'
module Fog
module Compute
class CloudSigma
class Snapshots < Fog::Collection
model Fog::Compute::CloudSigma::Snapshot
def all
resp = service.list_snapshots
data = resp.body['objects']
load(data)
end
def get(snap_id)
resp = service.get_snapshot(snap_id)
data = resp.body
new(data)
rescue Fog::CloudSigma::Errors::NotFound
return nil
end
end
end
end
end