DSCResources/MSFT_xWaitForCluster/MSFT_xWaitForCluster.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
$script:resourceHelperModulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\..\Modules\DscResource.Common' Import-Module -Name $script:resourceHelperModulePath $script:localizedData = Get-LocalizedData -DefaultUICulture 'en-US' <# .SYNOPSIS Get the values for which failover cluster and for how long to wait for the cluster to exist. .PARAMETER Name Name of the cluster to wait for. .PARAMETER RetryIntervalSec Interval to check for cluster existence. Default values is 10 seconds. .PARAMETER RetryCount Maximum number of retries to check for cluster existence. Default value is 50 retries. #> function Get-TargetResource { [OutputType([System.Collections.Hashtable])] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter()] [System.UInt64] $RetryIntervalSec = 10, [Parameter()] [System.UInt32] $RetryCount = 50 ) Write-Verbose -Message $script:localizedData.ReturnParameterValues @{ Name = $Name RetryIntervalSec = $RetryIntervalSec RetryCount = $RetryCount } } <# .SYNOPSIS Waits for the specific failover cluster to exist. It will throw an error if the cluster has not been detected during the timeout period. .PARAMETER Name Name of the cluster to wait for. .PARAMETER RetryIntervalSec Interval to check for cluster existence. Default values is 10 seconds. .PARAMETER RetryCount Maximum number of retries to check for cluster existence. Default value is 50 retries. #> function Set-TargetResource { param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter()] [System.UInt64] $RetryIntervalSec = 10, [Parameter()] [System.UInt32] $RetryCount = 50 ) $clusterFound = $false Write-Verbose -Message ($script:localizedData.CheckClusterPresent -f $Name) for ($count = 0; $count -lt $RetryCount; $count++) { try { $computerObject = Get-CimInstance -ClassName Win32_ComputerSystem if ($null -eq $computerObject -or $null -eq $computerObject.Domain) { Write-Verbose -Message $script:localizedData.TargetNodeDomainMissing break } $cluster = Get-Cluster -Name $Name -Domain $computerObject.Domain if ($null -ne $cluster) { Write-Verbose -Message ($script:localizedData.ClusterPresent -f $Name) $clusterFound = $true break } } catch { Write-Verbose -Message ($script:localizedData.ClusterAbsent -f $Name, $RetryIntervalSec) } Write-Verbose -Message ($script:localizedData.ClusterAbsent -f $Name, $RetryIntervalSec) Start-Sleep -Seconds $RetryIntervalSec } if (-not $clusterFound) { $errorMessage = $script:localizedData.ClusterAbsentAfterTimeOut -f $Name, $count, $RetryIntervalSec New-InvalidOperationException -Message $errorMessage } } <# .SYNOPSIS Test if the specific failover cluster exist. .PARAMETER Name Name of the cluster to wait for. .PARAMETER RetryIntervalSec Interval to check for cluster existence. Default values is 10 seconds. .PARAMETER RetryCount Maximum number of retries to check for cluster existence. Default value is 50 retries. #> function Test-TargetResource { [OutputType([Boolean])] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter()] [System.UInt64] $RetryIntervalSec = 10, [Parameter()] [System.UInt32] $RetryCount = 50 ) Write-Verbose -Message ($script:localizedData.EvaluatingClusterPresent -f $Name) $testTargetResourceReturnValue = $false try { $computerObject = Get-CimInstance -ClassName Win32_ComputerSystem if ($null -eq $computerObject -or $null -eq $computerObject.Domain) { Write-Verbose -Message $script:localizedData.TargetNodeDomainMissing } else { $cluster = Get-Cluster -Name $Name -Domain $computerObject.Domain if ($null -eq $cluster) { Write-Verbose -Message ($script:localizedData.ClusterAbsentWithDomain -f $Name, $computerObject.Domain) } else { Write-Verbose -Message ($script:localizedData.ClusterPresent -f $Name) $testTargetResourceReturnValue = $true } } } catch { Write-Verbose -Message ($script:localizedData.ClusterAbsentWithError -f $Name, $_.Message) } $testTargetResourceReturnValue } |