Sha256: 5f013243f89e8a19eb35e1079b2fc51a18a7dc19f2e0e59ed05dc20363ea6602
Contents?: true
Size: 726 Bytes
Versions: 53
Compression:
Stored size: 726 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Lists all supported OS types for this cloud. # # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listOsTypes.html] def list_os_types(options={}) options.merge!( 'command' => 'listOsTypes' ) request(options) end end class Mock # TODO: add id, category_id filters and paging params def list_os_types(options={}) os_types = self.data[:os_types] { "listostypesresponse" => { "count"=> os_types.count, "ostype"=> os_types.values } } end end end end end
Version data entries
53 entries across 53 versions & 3 rubygems