Sha256: 1156f2c6ebb1876aa571f56f69f71c64ca60d877ebf49fbcfb3421b7d1e2d1fa

Contents?: true

Size: 387 Bytes

Versions: 3

Compression:

Stored size: 387 Bytes

Contents

module Fog
  module Compute
    class Brightbox
      class Real

        def list_servers(options = {})
          request(
            :expects  => [200],
            :method   => 'GET',
            :path     => "/1.0/servers",
            :headers  => {"Content-Type" => "application/json"},
            :body     => options.to_json
          )
        end

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
fog4encbs-0.9.0.1 lib/fog/compute/requests/brightbox/list_servers.rb
fog4encbs-0.9.0 lib/fog/compute/requests/brightbox/list_servers.rb
fog-0.9.0 lib/fog/compute/requests/brightbox/list_servers.rb