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