mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
568 B
Ruby
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
|