DSCResources/DSC_ExchEventLogLevel/DSC_ExchEventLogLevel.schema.mof

[ClassVersion("1.0.0.0"), FriendlyName("ExchEventLogLevel")]
class DSC_ExchEventLogLevel : OMI_BaseResource
{
    [Key, Description("The Identity parameter specifies the name of the event logging category for which you want to set the event logging level.")] String Identity;
    [Required, Description("Credentials used to establish a remote PowerShell session to Exchange"), EmbeddedInstance("MSFT_Credential")] String Credential;
    [Required, Description("The Level parameter specifies the log level for the specific event logging category."), ValueMap{"Lowest","Low","Medium","High","Expert"}, Values{"Lowest","Low","Medium","High","Expert"}] String Level;
};