Sha256: 7860c6ad1b41393c08381dffada83f80b1e7d532e95ac8768cb2dde3e22a7679
Contents?: true
Size: 769 Bytes
Versions: 48
Compression:
Stored size: 769 Bytes
Contents
module Fog module Network class OpenStack class Real def get_ipsec_site_connection(ipsec_site_connection_id) request( :expects => [200], :method => 'GET', :path => "vpn/ipsec-site-connections/#{ipsec_site_connection_id}" ) end end class Mock def get_ipsec_site_connection(ipsec_site_connection_id) response = Excon::Response.new if data = self.data[:ipsec_site_connections][ipsec_site_connection_id] response.status = 200 response.body = {'ipsec_site_connection' => data} response else raise Fog::Network::OpenStack::NotFound end end end end end end
Version data entries
48 entries across 46 versions & 3 rubygems