Sha256: 073c86bea95fb35a8b761443c905086883c21add642149330e7e181e1d72a5fa
Contents?: true
Size: 901 Bytes
Versions: 12
Compression:
Stored size: 901 Bytes
Contents
module Fog module Compute class Brightbox class Real # Adds a number of listeners to the load balancer to enable balancing across nodes for those settings. # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Array] :listeners Array of Listener parameters. Timeout is optional and specified in milliseconds. # # @return [Hash, nil] The JSON response parsed to a Hash or nil if no options passed # # @see https://api.gb1.brightbox.com/1.0/#load_balancer_add_listeners_load_balancer # def add_listeners_load_balancer(identifier, options) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/load_balancers/#{identifier}/add_listeners", [202], options) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems