Sha256: b1e252ac4ecc348bb7dce3e26aabd474b74cb6ab5c8d1221b6083394e25ee16f
Contents?: true
Size: 574 Bytes
Versions: 4
Compression:
Stored size: 574 Bytes
Contents
module Fog module Network class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems