# File lib/fog/brightbox/requests/compute/reset_ftp_password_account.rb, line 20
        def reset_ftp_password_account(identifier = nil)
          if identifier.nil? || identifier.empty?
            Fog::Logger.deprecation("reset_ftp_password_account() without a parameter is deprecated, use reset_ftp_password_scoped_account instead [light_black](#{caller.first})[/]")
            reset_ftp_password_scoped_account
          else
            wrapped_request("post", "/1.0/accounts/#{identifier}/reset_ftp_password", [200])
          end
        end