Sha256: a8229b1214c86f254d76f500a47f27dd645dabb4caf2127307ad2e474dd4d2a6
Contents?: true
Size: 571 Bytes
Versions: 40
Compression:
Stored size: 571 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' => self.data[:lb_health_monitors].values }, :status => 200 ) end end end end end
Version data entries
40 entries across 40 versions & 5 rubygems