Sha256: a96df94249c4ed9f481ca00de42745eedbccfa41bd917932cd6a097ff4ef0cb1
Contents?: true
Size: 565 Bytes
Versions: 39
Compression:
Stored size: 565 Bytes
Contents
module Fog module Network class OpenStack class Real def list_lb_health_monitors(filters = {}) request( :expects => 200, :method => 'GET', :path => 'lb/health_monitors', :query => filters ) end end class Mock def list_lb_health_monitors(_filters = {}) Excon::Response.new( :body => {'health_monitors' => data[:lb_health_monitors].values}, :status => 200 ) end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems