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