DSCResources/cIntuneAccountProtectionLocalAdministratorPasswordSolutionPolicy/cIntuneAccountProtectionLocalAdministratorPasswordSolutionPolicy.schema.psm1

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

<#
IntuneAccountProtectionLocalAdministratorPasswordSolutionPolicy [String] #ResourceName
{
    DisplayName = [string]
    [AccessTokens = [string[]]]
    [AdEncryptedPasswordHistorySize = [UInt32]]
    [AdministratorAccountName = [string]]
    [AdPasswordEncryptionEnabled = [bool]]
    [AdPasswordEncryptionPrincipal = [string]]
    [ApplicationId = [string]]
    [ApplicationSecret = [PSCredential]]
    [Assignments = [MSFT_IntuneAccountProtectionLocalAdministratorPasswordSolutionPolicyAssignments[]]]
    [BackupDirectory = [UInt32]{ 0 | 1 | 2 }]
    [CertificateThumbprint = [string]]
    [Credential = [PSCredential]]
    [DependsOn = [string[]]]
    [Description = [string]]
    [Ensure = [string]{ Absent | Present }]
    [Identity = [string]]
    [ManagedIdentity = [bool]]
    [PasswordAgeDays = [UInt32]]
    [PasswordAgeDays_AAD = [UInt32]]
    [PasswordComplexity = [UInt32]{ 1 | 2 | 3 | 4 | 5 }]
    [PasswordExpirationProtectionEnabled = [bool]]
    [PasswordLength = [UInt32]]
    [PostAuthenticationActions = [UInt32]{ 1 | 3 | 5 }]
    [PostAuthenticationResetDelay = [UInt32]]
    [PsDscRunAsCredential = [PSCredential]]
    [TenantId = [string]]
}
 
#>



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

    $dscResourceName = 'IntuneAccountProtectionLocalAdministratorPasswordSolutionPolicy'

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

    $dscParameterKeys = 'DisplayName' -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)
    }
}