DSCResources/DSC_SqlDatabaseOwner/DSC_SqlDatabaseOwner.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("SqlDatabaseOwner")]
class DSC_SqlDatabaseOwner : OMI_BaseResource { [Key, Description("The name of database to be configured.")] String DatabaseName; [Required, Description("The name of the login that will become a owner of the desired sql database.")] String Name; [Write, Description("The host name of the SQL Server to be configured.")] String ServerName; [Key, Description("The name of the SQL instance to be configured.")] String InstanceName; }; |