forked from dsccommunity/WebAdministrationDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
98 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 53 additions & 25 deletions
78
DSCResources/MSFT_xWebApplication/MSFT_xWebApplication.schema.mof
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,53 @@ | ||
[ClassVersion("1.0.0")] | ||
class MSFT_xWebApplicationAuthenticationInformation | ||
{ | ||
[Write] Boolean Anonymous; | ||
[Write] Boolean Basic; | ||
[Write] Boolean Digest; | ||
[Write] Boolean Windows; | ||
}; | ||
|
||
[ClassVersion("1.0.0.0"), FriendlyName("xWebApplication")] | ||
class MSFT_xWebApplication : OMI_BaseResource | ||
{ | ||
[Key, Description("Name of website with which web application is associated")] String Website; | ||
[Key, Description("Name of web application")] String Name; | ||
[Required, Description("Web application pool for the web application")] String WebAppPool; | ||
[Required, Description("Physical path for the web application directory")] String PhysicalPath; | ||
[Write, Description("Whether web application should be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Write, Description("SSLFlags for the application"), ValueMap{"","Ssl","SslNegotiateCert","SslRequireCert","Ssl128"},Values{"","Ssl","SslNegotiateCert","SslRequireCert","Ssl128"}] String SslFlags[]; | ||
[write, EmbeddedInstance("MSFT_xWebApplicationAuthenticationInformation"), Description("Hashtable containing authentication information (Anonymous, Basic, Digest, Windows)")] String AuthenticationInfo; | ||
[Write, Description ("Allows a Application to automatically start without a request")] Boolean PreloadEnabled; | ||
[Write, Description ("Enables Autostart on an Application.")] Boolean ServiceAutoStartEnabled; | ||
[Write, Description ("Adds a AutostartProvider")] String ServiceAutoStartProvider; | ||
[Write, Description ("Adds a AutostartProvider ApplicationType")] String ApplicationType; | ||
[Write, Description ("Adds EnabledProtocols on an Application"), ValueMap{"http","https","net.tcp","net.msmq","net.pipe"},Values{"http","https","net.tcp","net.msmq","net.pipe"}] String EnabledProtocols[]; | ||
}; | ||
<<<<<<< HEAD | ||
[ClassVersion("1.0.0")] | ||
class MSFT_xWebApplicationAuthenticationInformation | ||
{ | ||
[Write] Boolean Anonymous; | ||
[Write] Boolean Basic; | ||
[Write] Boolean Digest; | ||
[Write] Boolean Windows; | ||
}; | ||
|
||
[ClassVersion("1.0.0.0"), FriendlyName("xWebApplication")] | ||
class MSFT_xWebApplication : OMI_BaseResource | ||
{ | ||
[Key, Description("Name of website with which web application is associated")] String Website; | ||
[Key, Description("Name of web application")] String Name; | ||
[Required, Description("Web application pool for the web application")] String WebAppPool; | ||
[Required, Description("Physical path for the web application directory")] String PhysicalPath; | ||
[Write, Description("Whether web application should be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Write, Description("SSLFlags for the application"), ValueMap{"","Ssl","SslNegotiateCert","SslRequireCert","Ssl128"},Values{"","Ssl","SslNegotiateCert","SslRequireCert","Ssl128"}] String SslFlags[]; | ||
[write, EmbeddedInstance("MSFT_xWebApplicationAuthenticationInformation"), Description("Hashtable containing authentication information (Anonymous, Basic, Digest, Windows)")] String AuthenticationInfo; | ||
[Write, Description ("Allows a Application to automatically start without a request")] Boolean PreloadEnabled; | ||
[Write, Description ("Enables Autostart on an Application.")] Boolean ServiceAutoStartEnabled; | ||
[Write, Description ("Adds a AutostartProvider")] String ServiceAutoStartProvider; | ||
[Write, Description ("Adds a AutostartProvider ApplicationType")] String ApplicationType; | ||
[Write, Description ("Adds EnabledProtocols on an Application"), ValueMap{"http","https","net.tcp","net.msmq","net.pipe"},Values{"http","https","net.tcp","net.msmq","net.pipe"}] String EnabledProtocols[]; | ||
}; | ||
======= | ||
[ClassVersion("1.0.0.0"), FriendlyName("xWebApplication")] | ||
class MSFT_xWebApplication : OMI_BaseResource | ||
{ | ||
[Key, Description("Name of website with which web application is associated")] String Website; | ||
[Key, Description("Name of web application")] String Name; | ||
[Required, Description("Web application pool for the web application")] String WebAppPool; | ||
[Required, Description("Physical path for the web application directory")] String PhysicalPath; | ||
[Write, Description("Whether web application should be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Write, Description("SSLFlags for the application"), ValueMap{"","Ssl","SslNegotiateCert","SslRequireCert","Ssl128"},Values{"","Ssl","SslNegotiateCert","SslRequireCert","Ssl128"}] String SslFlags[]; | ||
[write, EmbeddedInstance("MSFT_xWebApplicationAuthenticationInformation"), Description("Hashtable containing authentication information (Anonymous, Basic, Digest, Windows)")] String AuthenticationInfo; | ||
[Write, Description ("Allows a Application to automatically start without a request")] Boolean PreloadEnabled; | ||
[Write, Description ("Enables Autostart on an Application.")] Boolean ServiceAutoStartEnabled; | ||
[Write, Description ("Adds a AutostartProvider")] String ServiceAutoStartProvider; | ||
[Write, Description ("Adds a AutostartProvider ApplicationType")] String ApplicationType; | ||
[Write, Description ("Adds EnabledProtocols on an Application"), ValueMap{"http","https","net.tcp","net.msmq","net.pipe"},Values{"http","https","net.tcp","net.msmq","net.pipe"}] String EnabledProtocols[]; | ||
}; | ||
|
||
[ClassVersion("1.0.0")] | ||
class MSFT_xWebApplicationAuthenticationInformation | ||
{ | ||
[Write] Boolean Anonymous; | ||
[Write] Boolean Basic; | ||
[Write] Boolean Digest; | ||
[Write] Boolean Windows; | ||
}; | ||
>>>>>>> fixes #423 (#424) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters