Sha256: af3c3e0a425871e8015117644f22825e9cb228fdd0ee4ad7a64e28dab1930aa6

Contents?: true

Size: 1.6 KB

Versions: 51

Compression:

Stored size: 1.6 KB

Contents

module Fog
  module Network
    class OpenStack

      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.has_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'].detect { |_| _['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::OpenStack::NotFound
          end
        end
      end

    end
  end
end

Version data entries

51 entries across 51 versions & 3 rubygems

Version Path
fog-1.15.0 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
gapinc-fog-1.14.0 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
fog-1.14.0 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
fog-1.13.0 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
gapinc-fog-1.12.1.2 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
gapinc-fog-1.12.1.1 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
gapinc-fog-1.12.1a lib/fog/openstack/requests/network/update_lb_health_monitor.rb
gapinc-fog-1.12.1 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
fog-1.12.1 lib/fog/openstack/requests/network/update_lb_health_monitor.rb
fog-1.12.0 lib/fog/openstack/requests/network/update_lb_health_monitor.rb