# File lib/fog/network/openstack/requests/associate_lb_health_monitor.rb, line 5
        def associate_lb_health_monitor(pool_id, health_monitor_id)
          data = {
            'health_monitor' => {
              'id' => health_monitor_id,
            }
          }

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [201],
            :method  => 'POST',
            :path    => "lb/pools/#{pool_id}/health_monitors"
          )
        end