Sha256: 510216ae91f37ed0c5eef861b6d18a7a139e3a7a947080ca5d52c3170b8ffe8b

Contents?: true

Size: 1.6 KB

Versions: 4

Compression:

Stored size: 1.6 KB

Contents

module Fog
  module Network
    class HuaweiCloud
      class Real
        def update_lb_health_monitor(health_monitor_id, options = {})
          data = {'health_monitor' => {}}

          vanilla_options = [:delay, :timeout, :max_retries, :http_method, :url_path, :expected_codes, :admin_state_up]
          vanilla_options.select { |o| options.key?(o) }.each do |key|
            data['health_monitor'][key] = options[key]
          end

          request(
            :body    => Fog::JSON.encode(data),
            :expects => 200,
            :method  => 'PUT',
            :path    => "lb/health_monitors/#{health_monitor_id}"
          )
        end
      end

      class Mock
        def update_lb_health_monitor(health_monitor_id, options = {})
          response = Excon::Response.new
          if health_monitor = list_lb_health_monitors.body['health_monitors'].find { |_| _['id'] == health_monitor_id }
            health_monitor['delay']          = options[:delay]
            health_monitor['timeout']        = options[:timeout]
            health_monitor['max_retries']    = options[:max_retries]
            health_monitor['http_method']    = options[:http_method]
            health_monitor['url_path']       = options[:url_path]
            health_monitor['expected_codes'] = options[:expected_codes]
            health_monitor['admin_state_up'] = options[:admin_state_up]
            response.body = {'health_monitor' => health_monitor}
            response.status = 200
            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/update_lb_health_monitor.rb
fog-huaweicloud-0.0.2 lib/fog/network/huaweicloud/requests/update_lb_health_monitor.rb
fog-huaweicloud-0.1.3 lib/fog/network/huaweicloud/requests/update_lb_health_monitor.rb
fog-huaweicloud-0.1.2 lib/fog/network/huaweicloud/requests/update_lb_health_monitor.rb