# File lib/fog/shared_file_system/openstack/requests/create_share_network.rb, line 26
        def create_share_network(options = {})
          # stringify keys
          options = Hash[options.map { |k, v| [k.to_s, v] }]

          response = Excon::Response.new
          response.status = 200

          share_net = data[:share_networks_detail].first.dup

          response.body = {'share_networks' => share_net.merge(options)}
          response
        end