Sha256: df263cee47e78be6a8e858e88d915dcdaaf0febe917d99dab9fd2b50b5d26d83

Contents?: true

Size: 584 Bytes

Versions: 5

Compression:

Stored size: 584 Bytes

Contents

module Fog
  module Compute
    class Brightbox
      class Real
        # Destroy the LoadBalancer
        #
        # @param [String] identifier Unique reference to identify the resource
        #
        # @return [Hash] The JSON response parsed to a Hash
        #
        # @see https://api.gb1.brightbox.com/1.0/#load_balancer_destroy_load_balancer
        #
        def destroy_load_balancer(identifier)
          return nil if identifier.nil? || identifier == ""
          request("delete", "/1.0/load_balancers/#{identifier}", [202])
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/brightbox/requests/compute/destroy_load_balancer.rb
fog-nirvanix-1.8.1 lib/fog/brightbox/requests/compute/destroy_load_balancer.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/brightbox/requests/compute/destroy_load_balancer.rb
fog-sgonyea-1.8.1 lib/fog/brightbox/requests/compute/destroy_load_balancer.rb
fog-1.8.0 lib/fog/brightbox/requests/compute/destroy_load_balancer.rb