Sha256: 266de0d10e5a539dcd8157983131a84d33fbab27c171a742835f59bce9b54d76
Contents?: true
Size: 572 Bytes
Versions: 22
Compression:
Stored size: 572 Bytes
Contents
module Fog module OpenStack class Network 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
22 entries across 22 versions & 3 rubygems