Sha256: c74db1b1dbfb755f3d2105732831b42d411c196e65509ba93d3864ad150511f4
Contents?: true
Size: 755 Bytes
Versions: 11
Compression:
Stored size: 755 Bytes
Contents
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
Version data entries
11 entries across 11 versions & 3 rubygems