# File lib/fog/network/openstack/requests/get_lbaas_healthmonitor.rb, line 15
        def get_lbaas_healthmonitor(healthmonitor_id)
          response = Excon::Response.new
          if data = self.data[:lbaas_healthmonitors][healthmonitor_id]
            response.status = 200
            response.body = {'healthmonitor' => data}
            response
          else
            raise Fog::Network::OpenStack::NotFound
          end
        end