DSCResources/MicrosoftAzure_xSQLServerSettings/MicrosoftAzure_xSQLServerSettings.schema.mof

#pragma namespace("\\\\.\\root\\microsoft\\windows\\DesiredStateConfiguration")
 
[ClassVersion("1.0.0"), FriendlyName("xSQLServerSettings")]
class MicrosoftAzure_xSQLServerSettings : OMI_BaseResource
{
    [key, Description("The name of the SQL Server instance.")]
    string InstanceName;
 
    [required, EmbeddedInstance("MSFT_Credential"), Description("Credentials for a user that is a member of the sysadmin role.")]
    string SqlAdministratorCredential;
 
    [required, Description("Enables or disables SQL Server SQL authentication."), ValueMap{"Enabled", "Disabled"}, Values{"Enabled", "Disabled"}]
    string SqlAuthEnabled;
 
    [required, Description("The default location to use for database data.")]
    string FilePath;
 
    [required, Description("The default location to use for database logs.")]
    string LogPath;
};