Hi Luc,
awesome.
the following part you made from your Alarm expressions – Part 2 : Event alarms might really be what I'm looking for.
$extMgr = Get-View ExtensionManager
$extMgr.ExtensionList | %{
if($_.EventList -ne $null){
$_.Key
$_.EventList | %{
"`t" + $_.EventId
}
}
}
this means that the ExtensionList contains every "VMware.Vim.EventAlarmExpression".
I also noticed that the description of the event is in the $_.EventTypeSchema
this was exactly what I was looking for.
thank you for your excellency.
sincerely
Eric