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