# File lib/active_merchant/billing/gateways/beanstream.rb, line 123
      def update(vault_id, credit_card, options = {})
        post = {}
        add_address(post, options)
        add_credit_card(post, credit_card)
        options.merge!({:vault_id => vault_id, :operation => secure_profile_action(:modify)})
        add_secure_profile_variables(post,options)
        commit(post, true)
      end