Scripts/Reskit9/All Resources/xSqlPs/DSCResources/MSFT_xSqlServerInstall/MSFT_xSqlServerInstall.schema.mof
#pragma namespace("\\\\.\\root\\microsoft\\windows\\DesiredStateConfiguration")
[ClassVersion("1.0.0"), FriendlyName("xSqlServerInstall")] class MSFT_xSqlServerInstall : OMI_BaseResource { [key, Description("The name of sql instance.")] string InstanceName; [required, Description("The share path of sql server software.")] string SourcePath; [write,EmbeddedInstance("MSFT_Credential"), Description("The credential that vm could use to access net share of sql server software.")] string SourcePathCredential; [write, Description("List of names of Sql Server features to install")] string Features; [write, EmbeddedInstance("MSFT_Credential"), Description("Sql sa credential")] string SqlAdministratorCredential; [write, Description("Specify whether SQL server setup should discover and include product updates.")] boolean UpdateEnabled; [write, Description("Specify the startup account for the SQL server service.")] string SvcAccount; [write, Description("Specify logins to be members of the sysadmin role.")] string SysAdminAccounts; [write, Description("Specify the account for SQL server agent service.")] string AgentSvcAccount; }; |