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

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-1.20.0 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-1.19.0 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/cloudstack/requests/compute/list_os_types.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/cloudstack/requests/compute/list_os_types.rb