module Fog module Compute class Cloudstack class Real # Lists all available disk offerings. # # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listDiskOfferings.html] def list_disk_offerings(options={}) options.merge!( 'command' => 'listDiskOfferings' ) request(options) end end class Mock # TODO: add id, name filters and paging params def list_disk_offerings(options={}) disk_offerings = self.data[:disk_offerings] { "listdiskofferingsresponse" => { "count"=> disk_offerings.count, "diskoffering"=> disk_offerings.values } } end end end end end