# File lib/fog/openstack/requests/compute/list_servers.rb, line 6
        def list_servers(options = {})
          params = Hash.new
          params['all_tenants'] = 'True' if options[:all_tenants]

          request(
            :expects  => [200, 203],
            :method   => 'GET',
            :path     => 'servers.json',
            :query   => params
          )
        end