Sha256: dc407f2a995652826a8727715363a313df57a03263ab9ef1d6ba7106d690f2ea
Contents?: true
Size: 482 Bytes
Versions: 3
Compression:
Stored size: 482 Bytes
Contents
module Fog module Compute class Brightbox 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
3 entries across 3 versions & 2 rubygems