Sha256: f277e0ca225b781f985ae050b4b427931617a50b47291b7e78add351ac7e93cc
Contents?: true
Size: 889 Bytes
Versions: 66
Compression:
Stored size: 889 Bytes
Contents
module Fog module Compute class Brightbox class Real # Removes a number of listeners from a load balancer to cease 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 # # @return [Hash] if successful Hash version of JSON object # @return [NilClass] if no options were passed # # @see https://api.gb1.brightbox.com/1.0/#load_balancer_remove_listeners_load_balancer # def remove_listeners_load_balancer(identifier, options) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/load_balancers/#{identifier}/remove_listeners", [202], options) end end end end end
Version data entries
66 entries across 66 versions & 4 rubygems