Sha256: 2324d2835bb87f9d4a84e33ebe117bb18aafdb653b087fef31ff2b924f30d405

Contents?: true

Size: 1.34 KB

Versions: 29

Compression:

Stored size: 1.34 KB

Contents

module Fog
  module HP
    class LB
      # Update an existing load balancer
      #
      # ==== Parameters
      # * 'load_balancer_id'<~String> - UUId of the load balancer to update
      # * options<~Hash>:
      #   * 'name'<~String> - Name for the load balancer
      #   * 'algorithm'<~String> - Algorithm for the load balancer
      class Real
        def update_load_balancer(load_balancer_id, options={})
          data = {}
          l_options = ['name', 'algorithm']
          l_options.select{|o| options[o]}.each do |key|
            data[key] = options[key]
          end

          request(
            :body    => Fog::JSON.encode(data),
            :expects => 202,
            :method  => 'PUT',
            :path    => "loadbalancers/#{load_balancer_id}"
          )
        end
      end
      class Mock
        def update_load_balancer(load_balancer_id, options={})
          response = Excon::Response.new
          if lb = list_load_balancers.body['loadBalancers'].find { |_| _['id'] == load_balancer_id }

            lb['name']      = options['name']      if options['name']
            lb['algorithm'] = options['algorithm'] if options['algorithm']

            response.status = 202
            response.body   = ''
            response
          else
            raise Fog::HP::LB::NotFound
          end
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.36.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.35.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/lb/update_load_balancer.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.34.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.33.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.32.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.31.0 lib/fog/hp/requests/lb/update_load_balancer.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.30.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.29.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.28.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.27.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.26.0 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.25.0 lib/fog/hp/requests/lb/update_load_balancer.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/lb/update_load_balancer.rb
fog-1.24.0 lib/fog/hp/requests/lb/update_load_balancer.rb
ns-fog-1.22.11 lib/fog/hp/requests/lb/update_load_balancer.rb
ns-fog-1.22.10 lib/fog/hp/requests/lb/update_load_balancer.rb