DSCResources/VE_ROADatabase/VE_ROADatabase.schema.mof
[ClassVersion("1.0.0"), FriendlyName("ROADatabase")]
class VE_ROADatabase : OMI_BaseResource { [Key, Description("RES ONE Automation database server/instance name")] String DatabaseServer; [Key, Description("RES ONE Automatino database name")] String DatabaseName; [Required, Description("File path containing the RES ONE Automation MSIs or the literal path to the installer")] String Path; [Required, Description("Microsoft SQL username/password to create"), EmbeddedInstance("MSFT_Credential")] String Credential; [Required, Description("Microsoft SQL database credentials used to create the database"), EmbeddedInstance("MSFT_Credential")] String SQLCredential; [Write, Description("Path to RES ONE Automation license file")] String LicensePath; [Write, Description("Install the specified RES ONE Automation agent version")] String Version; [Write, Description("Specified path is a literal file reference")] Boolean IsLiteralPath; [Write, ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure; [Read, Description("Windows Installer Product Name")] String ProductName; }; |