# File lib/fog/brightbox/models/compute/application.rb, line 14
        def save
          raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
          options = {
            :name => name
          }.delete_if {|k,v| v.nil? || v == "" }
          data = service.create_application(options)
          merge_attributes(data)
          true
        end