# File lib/fog/shared_file_system/openstack/requests/get_share_network.rb, line 15
        def get_share_network(id)
          response = Excon::Response.new
          response.status = 200
          share_net = data[:share_network_updated] || data[:share_networks].first
          share_net['id'] = id
          response.body = {'share_network' => share_net}
          response
        end