Sha256: d24ca6cd999c03963659b97900307bad45169e6366e63086f97483dfbd990272
Contents?: true
Size: 572 Bytes
Versions: 33
Compression:
Stored size: 572 Bytes
Contents
module Fog module Network class OpenStack class Real def list_lbaas_healthmonitors(filters = {}) request( :expects => 200, :method => 'GET', :path => 'lbaas/healthmonitors', :query => filters ) end end class Mock def list_lbaas_healthmonitors(_filters = {}) Excon::Response.new( :body => {'healthmonitors' => data[:lbaas_healthmonitors].values}, :status => 200 ) end end end end end
Version data entries
33 entries across 31 versions & 3 rubygems