Update power restore from org to xyz interface

Resolves  openbmc/openbmc-test-automation#856

Change-Id: Ic9cea6032ff20e3eeff47dc68749549048de6e6d
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/data/variables.py b/data/variables.py
index 4a7c8dd..a80bff1 100644
--- a/data/variables.py
+++ b/data/variables.py
@@ -71,6 +71,14 @@
 # Host control URI variables.
 CONTROL_HOST_URI = '/xyz/openbmc_project/control/host0/'
 
+# Power restore variables.
+POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
+CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
+
+RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
+ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
+ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
+
 # Dump URI variable
 DUMP_URI = '/xyz/openbmc_project/dump/'
 DUMP_ENTRY_URI = DUMP_URI + 'entry/'