Sha256: 5f2269aa1630a91a7f014e871030f979e3b69ebadc45c9b66dc3bcd1cd29d1b3
Contents?: true
Size: 837 Bytes
Versions: 40
Compression:
Stored size: 837 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) self.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
40 entries across 40 versions & 5 rubygems