Sha256: c79afbd31a9960cc3da65dba90ec83981c6f60477e22f2f21d42ad666a0be924

Contents?: true

Size: 431 Bytes

Versions: 1

Compression:

Stored size: 431 Bytes

Contents

module Fog
  module Compute
    class Brightbox
      class Real

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