Sha256: 30a958d52395c0e0072f654f82f4ed2898debae4b5f71e0c2b1573d016ba140f
Contents?: true
Size: 615 Bytes
Versions: 26
Compression:
Stored size: 615 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 class Mock def destroy_cloud_ip(identifier, options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems