DSCResources/DSC_WaitForCluster/DSC_WaitForCluster.schema.mof

#pragma namespace("\\\\.\\root\\microsoft\\windows\\DesiredStateConfiguration")
 
[ClassVersion("1.0.0"), FriendlyName("WaitForCluster")]
class DSC_WaitForCluster : OMI_BaseResource
{
    [Key, Description("Name of the cluster to wait for.")] string Name;
    [Write, Description("Interval to check for cluster existence. Default values is `10` (seconds).")] Uint64 RetryIntervalSec;
    [Write, Description("Maximum number of retries to check for cluster existence. Default value is `50` (retries).")] Uint32 RetryCount;
};