Functions/GetAlerts.ps1

Function Get-Alerts {
    [cmdletbinding()]
    param(
        $deprep
    )
    $a = @()
    foreach ($alert in $deprep.DeploymentReport.Alerts.Alert) { 
        $a += $alert | Select-Object @{Label = "AlertName"; Expression = {($Alert.Name)}}, @{Label = "Value"; Expression = {$Alert.Issue.Value}},@{Label = "Id"; Expression= {$Alert.Issue.Id}}
    }
    Return $a
}