DSCResources/MSFT_xWebConfigKeyValue/MSFT_xWebConfigKeyValue.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("xWebConfigKeyValue")]
class MSFT_xWebConfigKeyValue : OMI_BaseResource { [Key, Description("Path to website location(IIS or WebAdministration format)")] String WebsitePath; [Key, Description("Config Section to be update"), ValueMap{"AppSettings"}, Values{"AppSettings"}] String ConfigSection; [Key, Description("Key for AppSettings")] String Key; [Write, Description("Indicates if the property and value should be present or absent. Defaults to Present."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; [Write, Description("Value for AppSettings")] String Value; [Write, Description("If the given key value pair is for attribute, default is element")] Boolean IsAttribute; }; |