请问关于SmartConnect和pyvmomi的几个问题。
1)在哪里可以找到有关smartconnect
使用的好的解释?
2)此功能做什么:"RetrieveContent" after connecting to a VM
:
def enable_ssh(vc_ip, vc_user="administrator@vsphere.local", vc_password="Kashya123!"):
try:
si = SmartConnect(host=vc_ip, port=443, user=vc_user, pwd=vc_password)
content = si.RetrieveContent()
cluster_list = content.rootFolder.childEntity
3)这行是做什么的?
cluster_list = content.rootFolder.childEntity
非常感谢:)