Sha256: c4327f84a27783ace10d293beaaddb1b027c7ed34d4b97b38af9994749fc2572
Contents?: true
Size: 748 Bytes
Versions: 41
Compression:
Stored size: 748 Bytes
Contents
module Fog module Bluebox class BLB class Real # remove machine from single backend # # === Parameters # * lb_backend_id<~String> - ID of backend # * lb_machine_id<~String> - ID of machine # # ==== Returns # * response<~Excon::Response>: # * body<~String> - success or failure message def remove_machine_from_lb_backend(lb_backend_id, lb_machine_id) request( :expects => 200, :method => 'DELETE', :path => "/api/lb_backends/#{lb_backend_id}/lb_machines/#{lb_machine_id}", :headers => {"Accept" => "text/plain"}, ) end end class Mock end end end end
Version data entries
41 entries across 39 versions & 5 rubygems