Sha256: 2a76ebc5900ddd02fb02cc3b18842a9a324a728b1c6631a84529ecf9998cb450

Contents?: true

Size: 562 Bytes

Versions: 28

Compression:

Stored size: 562 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # List hypervisors
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listHypervisors.html]
        def list_hypervisors(*args)
          options = {}
          if args[0].is_a? Hash
            options = args[0]
            options.merge!('command' => 'listHypervisors') 
          else
            options.merge!('command' => 'listHypervisors')
          end
          request(options)
        end
      end

    end
  end
end

Version data entries

28 entries across 26 versions & 4 rubygems

Version Path
fog-1.30.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
fog-1.29.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
fog-1.28.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
fog-1.27.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
fog-1.26.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
fog-1.25.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
nsidc-fog-1.24.1 lib/fog/cloudstack/requests/compute/list_hypervisors.rb
fog-1.24.0 lib/fog/cloudstack/requests/compute/list_hypervisors.rb