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