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