2005-12-19 10:34:11 -06:00
<?xml version="1.0"?>
<api name= 'libvir-python' >
2006-01-31 04:24:12 -06:00
<symbols >
<function name= "virConnectListDomainsID" file= 'python' >
<info > Returns the list of the ID of the domains on the hypervisor</info>
<arg name= 'conn' type= 'virConnectPtr' info= 'pointer to the hypervisor connection' />
<return type= 'int *' info= "the list of ID or None in case of error" />
</function>
2006-11-15 18:17:10 -06:00
<function name= 'virConnectListDefinedDomains' file= 'python' >
<info > list the defined domains, stores the pointers to the names in @names</info>
<arg name= 'conn' type= 'virConnectPtr' info= 'pointer to the hypervisor connection' />
<return type= 'str *' info= 'the list of Names of None in case of error' />
</function>
2006-02-24 06:26:56 -06:00
<function name= 'virDomainLookupByUUID' file= 'python' >
<info > Try to lookup a domain on the given hypervisor based on its UUID.</info>
<return type= 'virDomainPtr' info= 'a new domain object or NULL in case of failure' />
<arg name= 'conn' type= 'virConnectPtr' info= 'pointer to the hypervisor connection' />
<arg name= 'uuid' type= 'const unsigned char *' info= 'the UUID string for the domain, must be 16 bytes' />
</function>
2006-03-29 06:46:03 -06:00
<function name= 'virDomainGetInfo' file= 'python' >
<info > Extract informations about a domain. Note that if the connection used to get the domain is limited only a partial set of the informations can be extracted.</info>
2006-01-31 04:24:12 -06:00
<return type= 'int *' info= 'the list of informations or None in case of error' />
<arg name= 'domain' type= 'virDomainPtr' info= 'a domain object' />
</function>
2006-03-29 06:46:03 -06:00
<function name= 'virNodeGetInfo' file= 'python' >
<info > Extract hardware informations about the Node.</info>
<return type= 'int *' info= 'the list of informations or None in case of error' />
<arg name= 'conn' type= 'virConnectPtr' info= 'pointer to the hypervisor connection' />
</function>
<function name= 'virDomainGetUUID' file= 'python' >
2006-02-23 05:26:17 -06:00
<info > Extract the UUID unique Identifier of a domain.</info>
<return type= 'char *' info= 'the 16 bytes string or None in case of error' />
<arg name= 'domain' type= 'virDomainPtr' info= 'a domain object' />
</function>
2006-01-31 04:24:12 -06:00
</symbols>
2005-12-19 10:34:11 -06:00
</api>