# File lib/fog/network/openstack/requests/delete_lbaas_healthmonitor.rb, line 15
        def delete_lbaas_healthmonitor(healthmonitor_id)
          response = Excon::Response.new
          if list_lbaas_healthmonitors.body['healthmonitors'].map { |r| r['id'] }.include? healthmonitor_id
            data[:lbaas_healthmonitors].delete(healthmonitor_id)
            response.status = 204
            response
          else
            raise Fog::Network::OpenStack::NotFound
          end
        end