Sha256: 42fada8b939bfa1644079824203ae7601ed1e69c6fc1974e4f7cb7cac1f312a0
Contents?: true
Size: 712 Bytes
Versions: 39
Compression:
Stored size: 712 Bytes
Contents
module Fog module Network class OpenStack class Real def get_lb_health_monitor(health_monitor_id) request( :expects => [200], :method => 'GET', :path => "lb/health_monitors/#{health_monitor_id}" ) end end class Mock 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 end end end end
Version data entries
39 entries across 37 versions & 3 rubygems