Sha256: a98f6cc409c5f78c24f5aa96cf3ceb118a86b4e19889b99ae25465e6a61ec2c6

Contents?: true

Size: 401 Bytes

Versions: 1

Compression:

Stored size: 401 Bytes

Contents

module Fog
  module Compute
    class Brightbox
      class Real

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

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-0.10.0 lib/fog/compute/requests/brightbox/list_cloud_ips.rb