# File lib/fog/rackspace/models/auto_scale/webhook.rb, line 65
        def update
          requires :identity

          options = {
            'name' => name,
            'metadata' => metadata
          }

          data = service.update_webhook(group.id, policy.id, identity, options)
          merge_attributes(data.body)
          true
        end