Sha256: 0ad5942a9a1f42efbe19e0e06d7b3286e8a689bfbb8c55ba3d2bec2ef2d9a8f6
Contents?: true
Size: 651 Bytes
Versions: 8
Compression:
Stored size: 651 Bytes
Contents
module Fog module Brightbox class Compute class Real def remove_nodes_load_balancer(identifier, options = {}) return nil if identifier.nil? || identifier == "" request( :expects => [202], :method => 'POST', :path => "/1.0/load_balancers/#{identifier}/remove_nodes", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def remove_nodes_load_balancer(identifier, options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
8 entries across 8 versions & 2 rubygems