Sha256: f3e79082c301537596a6a723e9f1bf7c9f051e1c8ab6b3a70a20296bd985d4c1
Contents?: true
Size: 510 Bytes
Versions: 26
Compression:
Stored size: 510 Bytes
Contents
module Fog module Brightbox class Compute class Real def list_cloud_ips(options = {}) request( :expects => [200], :method => 'GET', :path => "/1.0/cloud_ips", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def list_cloud_ips(options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems