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