DSCResources/MSFT_SPBCSServiceApp/MSFT_SPBCSServiceApp.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("SPBCSServiceApp")]
class MSFT_SPBCSServiceApp : OMI_BaseResource { [Key, Description("The name of the BCS service app")] string Name; [Write, Description("The name of the BCS service application proxy")] string ProxyName; [Required, Description("The application pool it should run in")] String ApplicationPool; [Write, Description("Name of the database to create for the service app")] string DatabaseName; [Write, Description("Name of the database server to host the database on")] String DatabaseServer; [Write, Description("Present ensures service app exists, absent ensures it is removed"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] string Ensure; [Write, Description("Should SQL Server authentication be used to connect to the database?")] Boolean UseSQLAuthentication; [Write, Description("If using SQL authentication, the SQL credentials to use to connect to the instance"), EmbeddedInstance("MSFT_Credential")] String DatabaseCredentials; }; |