# File lib/fog/shared_file_system/openstack/requests/delete_share_network.rb, line 15
        def delete_share_network(id)
          response = Excon::Response.new
          response.status = 202

          share_net       = data[:share_net_updated] || data[:share_networks_detail].first.dup
          share_net['id'] = id

          response.body = {'share_network' => share_net}
          response
        end