Sha256: fc3f241c97a0d76fb31a2b5fdca3f2d7fa094272ee141d43de588f7870f035dd
Contents?: true
Size: 773 Bytes
Versions: 23
Compression:
Stored size: 773 Bytes
Contents
module Fog module Brightbox class Compute class Real # Destroy the LoadBalancer # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#load_balancer_delete_load_balancer # def delete_load_balancer(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/load_balancers/#{identifier}", [202], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems