DSCResources/DSC_CMAccounts/DSC_CMAccounts.schema.mof

[ClassVersion("1.0.0"), FriendlyName("CMAccounts")]
class DSC_CMAccounts : OMI_BaseResource
{
    [Key, Description("Specifies the SiteCode for the Configuration Manager site.")] String SiteCode;
    [Key, Description("Specifies the Configuration Manager account name.")] String Account;
    [Write, Description("Specifies a new password value for the account."), EmbeddedInstance("MSFT_Credential")] String AccountPassword;
    [Write, Description("Specifies whether the account is present or absent."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
};