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