internal/functions/validate/Validate-AssignmentReviewRange.ps1
function Validate-AssignmentReviewRange { [CmdletBinding()] Param ( [ValidateSet("noEnd","endDate","numbered")] [string] $type, [int] $numberOfOccurrences, [string] $recurrenceTimeZone = $null, [string] $startDate, [string] $endDate, [System.Management.Automation.PSCmdlet] $Cmdlet = $PSCmdlet ) begin { $parentResourceName = "accessPackageAssignmentPolicies" } process { if (Test-PSFFunctionInterrupt) { return } $hashtable = @{} foreach ($property in ($PSBoundParameters.GetEnumerator() | Where-Object {$_.Key -ne "Cmdlet"})) { if ($script:supportedResources[$parentResourceName]["validateFunctions"].ContainsKey($property.Key)) { if ($property.Value.GetType().Name -eq "Object[]") { $validated = @() foreach ($value in $property.Value) { $dummy = $value | ConvertTo-PSFHashtable -Include $($script:supportedResources[$parentResourceName]["validateFunctions"][$property.Key].Parameters.Keys) $validated += & $script:supportedResources[$parentResourceName]["validateFunctions"][$property.Key] @dummy -Cmdlet $Cmdlet } } else { $validated = $property.Value | ConvertTo-PSFHashtable -Include $($script:supportedResources[$parentResourceName]["validateFunctions"][$property.Key].Parameters.Keys) $validated = & $script:supportedResources[$parentResourceName]["validateFunctions"][$property.Key] @validated -Cmdlet $Cmdlet } } else { if ($property.Value -or $property.Value -eq 0) { $validated = $property.Value } else { $validated = $null } } $hashtable[$property.Key] = $validated } } end { $hashtable } } |