pyvmomi
ライブラリを正確に使用して上記を取得する方法、mapping
特に使用するデータ構造を意味します。データストア経由で行う必要があると思います。
def getdatastore(datastore):
try:
summary = datastore.summary
return summary.name
except Exception as error:
print "Unable to access summary for datastore: ", datastore.name
print error
pass
上記の関数で試しましたが無駄でした