Sha256: 631d021bc5ec3bb03982ae8256c595719275d8c9925272fcfdd4b80ad14cfc98

Contents?: true

Size: 1.73 KB

Versions: 4

Compression:

Stored size: 1.73 KB

Contents

module Fog
  module Network
    class HuaweiCloud
      class Real
        def create_lb_health_monitor(type, delay, timeout, max_retries, options = {})
          data = {
            'health_monitor' => {
              'type'        => type,
              'delay'       => delay,
              'timeout'     => timeout,
              'max_retries' => max_retries
            }
          }

          vanilla_options = [:http_method, :url_path, :expected_codes, :admin_state_up, :tenant_id]
          vanilla_options.reject { |o| options[o].nil? }.each do |key|
            data['health_monitor'][key] = options[key]
          end

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [201],
            :method  => 'POST',
            :path    => 'lb/health_monitors'
          )
        end
      end

      class Mock
        def create_lb_health_monitor(type, delay, timeout, max_retries, options = {})
          response = Excon::Response.new
          response.status = 201
          data = {
            'id'             => Fog::Mock.random_numbers(6).to_s,
            'type'           => type,
            'delay'          => delay,
            'timeout'        => timeout,
            'max_retries'    => max_retries,
            'http_method'    => options[:http_method],
            'url_path'       => options[:url_path],
            'expected_codes' => options[:expected_codes],
            'status'         => 'ACTIVE',
            'admin_state_up' => options[:admin_state_up],
            'tenant_id'      => options[:tenant_id],
          }

          self.data[:lb_health_monitors][data['id']] = data
          response.body = {'health_monitor' => data}
          response
        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/create_lb_health_monitor.rb
fog-huaweicloud-0.0.2 lib/fog/network/huaweicloud/requests/create_lb_health_monitor.rb
fog-huaweicloud-0.1.3 lib/fog/network/huaweicloud/requests/create_lb_health_monitor.rb
fog-huaweicloud-0.1.2 lib/fog/network/huaweicloud/requests/create_lb_health_monitor.rb