Sha256: b5480f340105ffccf785a9703946e70cdc9ede52cbce3ef48f03b8dbf77bc581
Contents?: true
Size: 572 Bytes
Versions: 51
Compression:
Stored size: 572 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
51 entries across 51 versions & 3 rubygems