Sha256: 06f54e61322539c4b5f0fc1ce0c1e574f8a6205d9b9da9c156492b6d849c877b
Contents?: true
Size: 1 KB
Versions: 40
Compression:
Stored size: 1 KB
Contents
module Fog module Network class OpenStack class Real 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 end class Mock def associate_lb_health_monitor(pool_id, health_monitor_id) response = Excon::Response.new if pool = list_lb_pools.body['pools'].find { |_| _['id'] == pool_id } pool['health_monitors'] << health_monitor_id self.data[:lb_pools][pool_id] = pool response.body = { 'health_monitor' => {} } response.status = 200 response else raise Fog::Network::OpenStack::NotFound end end end end end end
Version data entries
40 entries across 40 versions & 5 rubygems