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