# File lib/fog/compute/requests/brightbox/update_account.rb, line 6
        def update_account(options = {})
          return nil if options.empty? || options.nil?
          request(
            :expects  => [200],
            :method   => 'PUT',
            :path     => "/1.0/account",
            :headers  => {"Content-Type" => "application/json"},
            :body     => options.to_json
          )
        end