# File lib/fog/shared_file_system/openstack/requests/get_share.rb, line 15
        def get_share(id)
          response = Excon::Response.new
          response.status = 200
          share = data[:share_updated] || data[:shares_detail].first
          share['id'] = id
          response.body = share
          response
        end