Sha256: 6d8ca03440ed1ac7d74439c85a56481b780a1c2b667139b75709c4420ed510f5
Contents?: true
Size: 565 Bytes
Versions: 20
Compression:
Stored size: 565 Bytes
Contents
module Fog module OpenStack class Network 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
20 entries across 20 versions & 3 rubygems