virt-manager/virtinst/domain/pm.py

16 lines
435 B
Python
Raw Normal View History

2014-02-03 05:12:29 +08:00
#
# Copyright 2014 Red Hat, Inc.
# Cole Robinson <crobinso@redhat.com>
#
# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
2014-02-03 05:12:29 +08:00
from ..xmlbuilder import XMLBuilder, XMLProperty
2014-02-03 05:12:29 +08:00
class DomainPm(XMLBuilder):
XML_NAME = "pm"
2014-02-03 05:12:29 +08:00
suspend_to_mem = XMLProperty("./suspend-to-mem/@enabled", is_yesno=True)
suspend_to_disk = XMLProperty("./suspend-to-disk/@enabled", is_yesno=True)