Sha256: d6dc92077a7525d75973128210bde6d0f92fd33914c4eace46741cd31b011df5
Contents?: true
Size: 829 Bytes
Versions: 39
Compression:
Stored size: 829 Bytes
Contents
module Fog module Network class OpenStack class Real def disassociate_lb_health_monitor(pool_id, health_monitor_id) request( :expects => [204], :method => 'DELETE', :path => "lb/pools/#{pool_id}/health_monitors/#{health_monitor_id}" ) end end class Mock def disassociate_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'].delete(health_monitor_id) data[:lb_pools][pool_id] = pool response.status = 204 response else raise Fog::Network::OpenStack::NotFound end end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems