summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mof/LMI_SSSD.mof16
1 files changed, 12 insertions, 4 deletions
diff --git a/mof/LMI_SSSD.mof b/mof/LMI_SSSD.mof
index 51e7bda..e45d857 100644
--- a/mof/LMI_SSSD.mof
+++ b/mof/LMI_SSSD.mof
@@ -60,19 +60,27 @@ class LMI_SSSDComponent : CIM_ManagedElement
"otherwise.")]
boolean IsEnabled;
- [Description("Permanently change debug level of this component.")]
+ [Description("Permanently change debug level of this component."),
+ ValueMap { "0", "1", "2", "3" },
+ Values { "Success", "Failed", "Invalid arguments", "I/O error" }]
uint32 SetDebugLevelPermanently([In] uint16 debug_level);
[Description("Change debug level of this component but switch it back "
- "to the original value when SSSD is restarted.")]
+ "to the original value when SSSD is restarted."),
+ ValueMap { "0", "1", "2", "3" },
+ Values { "Success", "Failed", "Invalid arguments", "I/O error" }]
uint32 SetDebugLevelTemporarily([In] uint16 debug_level);
[Description("Enable this component. SSSD has to be restarted in order "
- "this change to take any effect.")]
+ "this change to take any effect."),
+ ValueMap { "0", "1", "3" },
+ Values { "Success", "Failed", "I/O error" }]
uint32 Enable();
[Description("Disable this component. SSSD has to be restarted in order "
- "this change to take any effect.")]
+ "this change to take any effect."),
+ ValueMap { "0", "1", "3" },
+ Values { "Success", "Failed", "I/O error" }]
uint32 Disable();
};