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