Sha256: 960f4b922e809de78459d5dedd182a3e071f61713f5c166980ebc951cfd3e3f6
Contents?: true
Size: 482 Bytes
Versions: 12
Compression:
Stored size: 482 Bytes
Contents
module Fog module Brightbox class Compute class Real def destroy_cloud_ip(identifier, options = {}) return nil if identifier.nil? || identifier == "" request( :expects => [200], :method => 'DELETE', :path => "/1.0/cloud_ips/#{identifier}", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems