I’m integrating CommVault API in order to have all client ( VM, client which make backup and Kubernates Application) in a single dataframe.
/client route returns hostName,clientName,displayName
/VM returns several information of which returns clientName,displayName but not HostName
/v4/Kubernetes/Applications return several information of which name but not displayName and HostName
While I know that a VM may not have a phisical hostName and kubernates Applications may not have an hostName since it’s dockerized containers, it is possible to have the hostName for Kubernates and VMs?
/client has all 3 name columns(hostName,clientName,displayName)
/VM has 2 name columns(clientName,displayName)
/Applications has only one name column (name)
Or, I can do the assumption that
VM Client Name can be added to hostname
Kubernates application names can be considered as HostName?
like hostName = clientName = name ?
Thanks for all the clarification