DSCResources/MSFT_xSQLDatabase/MSFT_xSQLDatabase.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("xSQLDatabase")] class MSFT_xSQLDatabase : OMI_BaseResource { [Key, Description("The name of the SQL database.")] String Name; [Write, Description("An enumerated value that describes if the database is added (Present) or dropped (Absent). Valid values are 'Present' or 'Absent'. Default Value is 'Present'."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; [Key, Description("The host name of the SQL Server to be configured.")] String SQLServer; [Key, Description("The name of the SQL instance to be configured.")] String SQLInstanceName; }; |