16 lines
435 B
Python
16 lines
435 B
Python
#
|
|
# 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.
|
|
|
|
from ..xmlbuilder import XMLBuilder, XMLProperty
|
|
|
|
|
|
class DomainPm(XMLBuilder):
|
|
XML_NAME = "pm"
|
|
|
|
suspend_to_mem = XMLProperty("./suspend-to-mem/@enabled", is_yesno=True)
|
|
suspend_to_disk = XMLProperty("./suspend-to-disk/@enabled", is_yesno=True)
|