Sha256: 8da716592c2f8d5471ba9d50838f6d3526a2ca1a4920df8c44b6928f2daa6ce8
Contents?: true
Size: 726 Bytes
Versions: 61
Compression:
Stored size: 726 Bytes
Contents
module Fog module Network class OpenStack class Real def delete_floating_ip(floating_ip_id) request( :expects => 204, :method => 'DELETE', :path => "floatingips/#{floating_ip_id}" ) end end class Mock def delete_floating_ip(floating_ip_id) response = Excon::Response.new if list_floating_ips.body['floatingips'].map { |r| r['id'] }.include? floating_ip_id self.data[:floating_ips].delete(floating_ip_id) response.status = 204 response else raise Fog::Network::OpenStack::NotFound end end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems