Sha256: 1fad8e7e173e9fc3e52dab24348abcbe63600010be57aca34d76bdb5d246b18d
Contents?: true
Size: 714 Bytes
Versions: 40
Compression:
Stored size: 714 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
40 entries across 40 versions & 5 rubygems