mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 08:50:12 -05:00
12 lines
884 B
Plaintext
12 lines
884 B
Plaintext
[ClassVersion("1.0.0"), FriendlyName("Website")]
|
|
class Demo_IISWebsite : OMI_BaseResource
|
|
{
|
|
[Key] string Name;
|
|
[Required] string PhysicalPath;
|
|
[write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] string Ensure;
|
|
[write,ValueMap{"Started","Stopped"},Values{"Started", "Stopped"}] string State;
|
|
[write] string Protocol[];
|
|
[write] string BindingInfo[];
|
|
[write] string ApplicationPool;
|
|
[read] string ID;
|
|
}; |