Sha256: 26efde75fcfcf6b46511d52bad78deb9027b3e78de3be17cf8c7958bea7d99cb

Contents?: true

Size: 396 Bytes

Versions: 1

Compression:

Stored size: 396 Bytes

Contents

module Fog
  module Compute
    class Brightbox
      class Real

        def get_account(options = {})
          request(
            :expects  => [200],
            :method   => 'GET',
            :path     => "/1.0/account",
            :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/get_account.rb