Sha256: e744132cdc3ca774115b95bd1daaa6bf3700413ded461d3b779432422c0767dc
Contents?: true
Size: 935 Bytes
Versions: 23
Compression:
Stored size: 935 Bytes
Contents
module Fog module Brightbox class Compute class Real # Remove a number of nodes from the load balancer # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Array] :nodes Array of Node parameters # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @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_nodes_load_balancer # def remove_nodes_load_balancer(identifier, options) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/load_balancers/#{identifier}/remove_nodes", [202], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems