From e112cb2b2a7c4f30a72cb3eaa15ef90947bc3575 Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Fri, 25 Apr 2014 13:55:50 +0200 Subject: CIM schema v6 --- mof/LMI_SSSD.mof | 16 ++++++++++++---- 1 file 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(); }; -- cgit