Hi all,
I would like to implement some properties of the HostRuntimeInfo data object of vSphere Web Services API in the VMWare vCenter driver. I couldn't find an API call (HTTP request) which I can use to retrieve such information. Does someone know the API call we can use or any implementation ideas to integrate such features in Dataminer?
More information about HostRuntimeInfo: https://code.vmware.com/apis/196/vsphere/doc/vim.host.RuntimeInfo.html
Hi Fenta,
At first sight there is indeed no specific call to retrieve "HostRuntimeInfo". But he page you are referring to mentions that it is a property of the HostListSummary and HostSystem classes.
HostSystem itself is returned by the following API calls: AddHost_Task, HostSpecGetUpdatedHosts, QueryCompatibleHostForExistingDvs, QueryCompatibleHostForNewDvs, QueryUnmonitoredHosts. It is also a property of a lot of other classes, so maybe check if the data is not available yet from another call. See https://code.vmware.com/apis/196/vsphere/doc/vim.HostSystem.html#field_detail.
Hopefully this will help you a step further.
Hi Tom,
Thank you for the response. After exploring some additional documents, I already found how to implement it.