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