Files
2016-12-15 19:08:38 -08:00

11 lines
811 B
Plaintext

[ClassVersion("1.0.0"),FriendlyName("Script")]
class MSFT_ScriptResource : OMI_BaseResource
{
[Key, Description("A string that can be used to create a PowerShell script block that retrieves the current state of the resource.")] String GetScript;
[Key, Description("A string that can be used to create a PowerShell script block that sets the resource to the desired state.")] String SetScript;
[Key, Description("A string that can be used to create a PowerShell script block that validates whether or not the resource is in the desired state.")] String TestScript;
[Write, EmbeddedInstance("MSFT_Credential"), Description("The credential of the user account to run the script under if needed.")] String Credential;
[Read, Description("The result from the GetScript script block.")] String Result;
};