Sha256: 116b7ad41b870797b7ae54eb23d8f54e6a075af5c40d7d1d9e8bf837d0339ec9
Contents?: true
Size: 1.14 KB
Versions: 24
Compression:
Stored size: 1.14 KB
Contents
module Fog module Compute class Cloudstack class Real # Lists all available snapshots for the account. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listSnapshots.html] def list_snapshots(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listSnapshots') else options.merge!('command' => 'listSnapshots') end # add project id if we have one @cloudstack_project_id ? options.merge!('projectid' => @cloudstack_project_id) : nil 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
Version data entries
24 entries across 22 versions & 3 rubygems