@mike_bronson7
There are couple of other options we can explore like:
Using HDFS command line is one of the best way to get the detailed version.
# hdfs version
Using HDP Select command on the host where you want to check the version.
# hdp-select | grep hdfs-client
Using Ambari API also we can get some idea about the hdfs client version shipped and installed as part of the HDP.
# curl -s -u admin:admin -H "X-Requested-By: ambari" -X GET http://${AMBARI_SERVER_FQDN}:8080/api/v1/clusters/${CLUSTER_NAME}/hosts/${HOST_TO_CHECK}/host_components/HDFS_CLIENT | grep -i version
.
.