Sha256: a55feaf9b325630e30c82f49b7ed9d76b5499768474f901a70c3e024b7b2a3c3
Contents?: true
Size: 1017 Bytes
Versions: 22
Compression:
Stored size: 1017 Bytes
Contents
module Fog module OpenStack class Network 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 data[:lb_pools][pool_id] = pool response.body = {'health_monitor' => {}} response.status = 200 response else raise Fog::OpenStack::Network::NotFound end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems