Sha256: cc8ebbb45e613f14a9f5e7bd6b5a76b36dff2647c4eb6ef76549bce9a242fa41

Contents?: true

Size: 716 Bytes

Versions: 4

Compression:

Stored size: 716 Bytes

Contents

module Fog
  module Network
    class HuaweiCloud
      class Real
        def get_lb_health_monitor(health_monitor_id)
          request(
            :expects => [200],
            :method  => 'GET',
            :path    => "lb/health_monitors/#{health_monitor_id}"
          )
        end
      end

      class Mock
        def get_lb_health_monitor(health_monitor_id)
          response = Excon::Response.new
          if data = self.data[:lb_health_monitors][health_monitor_id]
            response.status = 200
            response.body = {'health_monitor' => data}
            response
          else
            raise Fog::Network::HuaweiCloud::NotFound
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/network/huaweicloud/requests/get_lb_health_monitor.rb
fog-huaweicloud-0.0.2 lib/fog/network/huaweicloud/requests/get_lb_health_monitor.rb
fog-huaweicloud-0.1.3 lib/fog/network/huaweicloud/requests/get_lb_health_monitor.rb
fog-huaweicloud-0.1.2 lib/fog/network/huaweicloud/requests/get_lb_health_monitor.rb