DSCResources/JsonFile/JsonFile.schema.mof
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[ClassVersion("1.0.0.0"), FriendlyName("JsonFile")] class JsonFile : OMI_BaseResource { [Write, ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; [Key] String Path; [Key] String Key; [Key] String Value; [Write, ValueMap{"Value", "ArrayElement"}, Values{"Value", "ArrayElement"}] String Mode; [Write, ValueMap{"utf8", "utf8NoBOM", "utf8BOM", "utf32", "unicode", "bigendianunicode", "ascii", "sjis", "Default"}, Values{"utf8", "utf8NoBOM", "utf8BOM", "utf32", "unicode", "bigendianunicode", "ascii", "sjis", "Default"}] String Encoding; [Write, ValueMap{"CRLF", "LF"}, Values{"CRLF", "LF"}] String NewLine; [write] boolean UseLegacy; }; |