2014-02-03 05:12:29 +08:00
|
|
|
#
|
|
|
|
# Copyright 2014 Red Hat, Inc.
|
|
|
|
# Cole Robinson <crobinso@redhat.com>
|
|
|
|
#
|
2018-04-04 21:35:41 +08:00
|
|
|
# This work is licensed under the GNU GPLv2 or later.
|
2018-03-21 03:00:02 +08:00
|
|
|
# See the COPYING file in the top-level directory.
|
2014-02-03 05:12:29 +08:00
|
|
|
|
2018-03-21 03:10:04 +08:00
|
|
|
from ..xmlbuilder import XMLBuilder, XMLProperty
|
2014-02-03 05:12:29 +08:00
|
|
|
|
|
|
|
|
2018-03-21 03:10:04 +08:00
|
|
|
class DomainPm(XMLBuilder):
|
2018-03-21 22:53:34 +08:00
|
|
|
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)
|