Does anybody know if python-libvirt has any API to perform 'domtime operations'.
I'm writing a python script that runs the command manually using os
module.
...
os.system("virsh domtime %s --sync" % my_domain)
...
I want to use the libvirt API for that.
Do you know if it is possible?
I'm not finding any reference into the Documentation.