Pysphere получает имя текущего снимка

Кто-нибудь знает, как получить текущее имя снимка, используя pyshpere api?
https://code.google.com/p/pysphere/wiki/GettingStarted

1 ответ

    # This ignores the certificate warning
    default_context = ssl._create_default_https_context
    ssl._create_default_https_context = ssl._create_unverified_context

    # Connect to the VMware instance
    server_instance = pysphere.VIServer();
    server_instance.connect(ipaddress,username,password)

    # Create a VM object of which details are required
    vm = server_instance.get_vm_by_name(vmname)

    # This gets the status of the VM.
    print vm.get_status()

    # This gets the current snapshot name.
    print vm.get_current_snapshot_name()

Всегда полезно обращаться к базовым библиотекам. Вот ссылка для pysphere. http://nullege.com/codes/show/src@p@y@pysphere-HEAD@pysphere@__init__.py/173/pysphere.vi_mor.MORTypes

Удачи!

Другие вопросы по тегам