Checks/Azure/Test-MonitorAlertDeleteSecuritySolution.ps1

function Test-MonitorAlertDeleteSecuritySolution {
    <#
    .SYNOPSIS
        Subscription has an Azure Monitor Activity Log alert for Microsoft.Security/securitySolutions delete operations

    .DESCRIPTION
        **Azure activity log alerts** monitor deletions of **Security Solutions** by targeting the operation `Microsoft.Security/securitySolutions/delete` at subscription scope.
        
        Identifies whether notifications are configured for security solution removal events.

    .PARAMETER Check
        CIEMCheck object containing check metadata.
    #>

    [CmdletBinding()]
    [OutputType([PSCustomObject[]])]
    param(
        [Parameter(Mandatory)]
        [CIEMCheck]$Check
    )

    $ErrorActionPreference = 'Stop'

    # TODO: Implement check logic based on Prowler check: monitor_alert_delete_security_solution

    [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check monitor_alert_delete_security_solution for reference.', 'N/A', 'monitor Resources')
}