DSCResources/cSCComplianceTag/cSCComplianceTag.schema.psm1

configuration cSCComplianceTag {
    param (
        [Parameter()]
        [hashtable[]]
        $Items
)

<#
SCComplianceTag [String] #ResourceName
{
    Name = [string]
    [AccessTokens = [string[]]]
    [ApplicationId = [string]]
    [CertificatePassword = [PSCredential]]
    [CertificatePath = [string]]
    [CertificateThumbprint = [string]]
    [Comment = [string]]
    [Credential = [PSCredential]]
    [DependsOn = [string[]]]
    [Ensure = [string]{ Absent | Present }]
    [EventType = [string]]
    [FilePlanProperty = [MSFT_SCFilePlanProperty]]
    [IsRecordLabel = [bool]]
    [Notes = [string]]
    [PsDscRunAsCredential = [PSCredential]]
    [Regulatory = [bool]]
    [RetentionAction = [string]{ Delete | Keep | KeepAndDelete }]
    [RetentionDuration = [string]]
    [RetentionType = [string]{ CreationAgeInDays | EventAgeInDays | ModificationAgeInDays | TaggedAgeInDays }]
    [ReviewerEmail = [string[]]]
    [TenantId = [string]]
}
 
#>



    Import-DscResource -ModuleName PSDesiredStateConfiguration
    Import-DscResource -ModuleName Microsoft365DSC

    $dscResourceName = 'SCComplianceTag'

    $param = $PSBoundParameters
    $param.Remove("InstanceName")

    $dscParameterKeys = 'Name' -split ', '

        foreach ($item in $Items)
        {
            if (-not $item.ContainsKey('Ensure'))
            {
                $item.Ensure = 'Present'
            }
            $keyValues = foreach ($key in $dscParameterKeys)
        {
            $item.$key
        }
        $executionName = $keyValues -join '_'
        $executionName = $executionName -replace "[\s()\\:*-+/{}```"']", '_'
        (Get-DscSplattedResource -ResourceName $dscResourceName -ExecutionName $executionName -Properties $item -NoInvoke).Invoke($item)
    }
}