hooks: Provide variables with post-opcode values
[ganeti-local] / lib / constants.py
index 0560dec..2ae1a43 100644 (file)
@@ -1030,13 +1030,16 @@ QR_GROUP = "group"
 QR_OS = "os"
 
 #: List of resources which can be queried using L{opcodes.OpQuery}
 QR_OS = "os"
 
 #: List of resources which can be queried using L{opcodes.OpQuery}
-QR_OP_QUERY = frozenset([QR_INSTANCE, QR_NODE, QR_GROUP, QR_OS])
+QR_VIA_OP = frozenset([QR_INSTANCE, QR_NODE, QR_GROUP, QR_OS])
 
 #: List of resources which can be queried using Local UniX Interface
 
 #: List of resources which can be queried using Local UniX Interface
-QR_OP_LUXI = QR_OP_QUERY.union([
+QR_VIA_LUXI = QR_VIA_OP.union([
   QR_LOCK,
   ])
 
   QR_LOCK,
   ])
 
+#: List of resources which can be queried using RAPI
+QR_VIA_RAPI = QR_VIA_LUXI
+
 # Query field types
 QFT_UNKNOWN = "unknown"
 QFT_TEXT = "text"
 # Query field types
 QFT_UNKNOWN = "unknown"
 QFT_TEXT = "text"