Sha256: 3be1d748bf9edc73c6129c18098f5cd3714371f863240cad2d5d14ab7749e1c9
Contents?: true
Size: 542 Bytes
Versions: 40
Compression:
Stored size: 542 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
40 entries across 40 versions & 5 rubygems