# File lib/fog/shared_file_system/openstack/requests/grant_share_access.rb, line 18
        def grant_share_access(share_id, access_to, access_type, access_level)
          response = Excon::Response.new
          response.status = 200

          access                = data[:access_rules].first
          access[:share_id]     = share_id
          access[:access_level] = access_level
          access[:access_type]  = access_type
          access[:access_to]    = access_to

          response.body = {'access' => access}
          response
        end