Examples/Resources/SqlWaitForAG/1-WaitForASingleClusterGroup.ps1
<#
.EXAMPLE This example will wait for the cluster role/group 'AGTest1'. #> Configuration Example { param ( [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $SqlAdministratorCredential ) Import-DscResource -ModuleName SqlServerDsc node localhost { SqlWaitForAG SQLConfigureAG-WaitAGTest1 { Name = 'AGTest1' RetryIntervalSec = 20 RetryCount = 30 PsDscRunAsCredential = $SqlAdministratorCredential } } } |