DSCResources/MSFT_SPSessionStateService/MSFT_SPSessionStateService.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("SPSessionStateService")]
class MSFT_SPSessionStateService : OMI_BaseResource { [Key, Description("The name of the database for the service")] string DatabaseName; [Key, Description("The name of the database server for the database")] string DatabaseServer; [Write, Description("Present is the state service should be enabled, absent if it should be disabled"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] string Ensure; [Write, Description("What is the timeout on sessions")] uint32 SessionTimeout; [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; }; |