You can get the alert actions with alert name with this sql query.
SELECT
ac.Name
,aa.ParentID
,aa.[EnvironmentType]
,aa.[CategoryType]
,a.Description
FROM [SolarWindsOrion].[dbo].[ActionsAssignments] as aa
inner join Actions as a on aa.ActionID = a.ActionID
inner join AlertConfigurations as ac on ac.AlertID = aa.ParentID
where aa.EnvironmentType = 'Alerting' and ac.name like 'Turkcell%' --and a.ActionTypeID = 'SnmpTrap'