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/requests/compute/list_snapshots.rb

42 lines
906 B
Ruby
Raw Normal View History

module Fog
module Compute
class Cloudstack
class Real
# Lists all available snapshots for the account.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listSnapshots.html]
def list_snapshots(options={})
options.merge!(
'command' => 'listSnapshots'
)
request(options)
end
end
class Mock
def list_snapshots(options={})
snapshot_id = options.delete('id')
if snapshot_id
snapshots = [self.data[:snapshots][snapshot_id]]
else
snapshots = self.data[:snapshots].values
end
{
'listsnapshotsresponse' => {
'count' => snapshots.size,
'snapshot' => snapshots
}
}
end
end
end
end
end