Sha256: 4c36c0f41fe785b5c09fe1ba38244e99d760d854214bbce521ea070c2dfade61
Contents?: true
Size: 921 Bytes
Versions: 23
Compression:
Stored size: 921 Bytes
Contents
module Fog module Brightbox class Compute class Real # Add a number of nodes to 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_add_nodes_load_balancer # def add_nodes_load_balancer(identifier, options) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/load_balancers/#{identifier}/add_nodes", [202], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems