DSCResources/MSFT_SPProjectServerServiceApp/MSFT_SPProjectServerServiceApp.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("SPProjectServerServiceApp")] class MSFT_SPProjectServerServiceApp : OMI_BaseResource { [Key, Description("The name of the service application")] string Name; [Required, Description("The name of the application pool to run the service app in")] string ApplicationPool; [Write, Description("The name of the Project Server Service Application Proxy")] string ProxyName; [Write, Description("Present if the service app should exist, absent if it should not"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] string Ensure; [Write, Description("POWERSHELL 4 ONLY: The account to run this resource as, use PsDscRunAsCredential if using PowerShell 5"), EmbeddedInstance("MSFT_Credential")] String InstallAccount; }; |