2.6. 示例:使用 Python 列出主机集合

API 类提供了访问主机集合(名为 hosts)的功能。这个集合包括了环境中的所有主机。

例 2.5. 使用 Python 列出主机集合

这个 Python 示例列出了 hosts 集合中的主机。
from ovirtsdk.api import API
from ovirtsdk.xml import params

try:
    api = API(url="https://HOST",
              username="USER@DOMAIN",
              password="PASS",
              ca_file="ca.crt")

    h_list = api.hosts.list()

    for h in h_list:
        print "%s (%s)" % (h.get_name(), h.get_id())

    api.disconnect()

except Exception as ex:
    print "Unexpected error: %s" % ex
如果一个环境中只附加了一个名为 Atlantic 的主机,这个示例会输出以下信息:
Atlantic (5b333c18-f224-11e1-9bdd-00163e77e2ed)