Sha256: 4d07e7f22b7820de5d8b81892964ba9df7ec41d3c765ff0ffbc1328b878f3a16
Contents?: true
Size: 554 Bytes
Versions: 12
Compression:
Stored size: 554 Bytes
Contents
module Fog module Compute class Brightbox class Real # Destroy the image. # # @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/#image_destroy_image # def destroy_image(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/images/#{identifier}", [202]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems