Sha256: d1bb6a773aeeaacfde941ff799f8009db766a9bf3a6c197c754601bf3f6d729e
Contents?: true
Size: 494 Bytes
Versions: 1
Compression:
Stored size: 494 Bytes
Contents
module Fog module Compute class Brightbox 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 => MultiJson.encode(options) ) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-0.10.0 | lib/fog/compute/requests/brightbox/unmap_cloud_ip.rb |