Sha256: 521f142043217ce073cf687a2b0637e7f88d5e525810f0a189263ce79ebec5f0
Contents?: true
Size: 592 Bytes
Versions: 12
Compression:
Stored size: 592 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 == "" wrapped_request("delete", "/1.0/load_balancers/#{identifier}", [202]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems