Sha256: fd7a50977d7075595f012809bb280d1a233f8a5628cc2bcd38263c17e7b8112a
Contents?: true
Size: 544 Bytes
Versions: 61
Compression:
Stored size: 544 Bytes
Contents
module Fog module Network class OpenStack class Real def list_floating_ips(filters = {}) request( :expects => 200, :method => 'GET', :path => 'floatingips', :query => filters ) end end class Mock def list_floating_ips(filters = {}) Excon::Response.new( :body => { 'floatingips' => self.data[:floating_ips].values }, :status => 200 ) end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems