Thanks for your confirmation about my understanding.
Right now, we dont have the flexibility to use dynamic expressions on pipeline parameters and its hard to understand which properties we can use in the parameters field.
In order to know about the properties of triggers, we can use the properties icon in the monitor tab and trigger runs. Below is a sample for a scheduled trigger execution.
If you click on Properties, we will get to see all the properties like below.
From the above screenshot, we can infer that, below properties can be used with the @trigger() method, like, @trigger().<property_name> where property_name could be name, startTime, endTime, scheduledTIme, trackingId, clientTrackingId, code and status.
{
"name": "Trigger_12348CAF-BE66-42CF-83DA-E3028693F304",
"startTime": "2023-09-05T18:00:22.4180978Z",
"endTime": "2023-09-05T18:00:22.4180978Z",
"scheduledTime": "2023-09-05T18:00:22.507Z",
"trackingId": "1234a112-7bb9-4ba6-b032-6189d6dd8b73",
"clientTrackingId": "12346637084630521889360938860CU33",
"code": "OK",
"status": "Succeeded"
}
For an storage event trigger it will be like below where we can see\use folderpath, filename properties as well.
{
"name": "Trigger_12348CAF-BE66-42CF-83DA-E3028693F304",
"outputs": {
"headers": {
"Host": "prod-1234.westeurope.logic.azure.com",
"x-ms-client-tracking-id": "1234c153-fc96-4b8e-9002-0f5096bcd744",
"Content-Length": "52",
"Content-Type": "application/json; charset=utf-8"
},
"body": {
"folderPath": "data",
"fileName": "myFile.csv"
}
},
"startTime": "2018-09-25T18:22:54.8383112Z",
"endTime": "2018-09-25T18:22:54.8383112Z",
"trackingId": "07b3d1a1-8735-4ff0-9cc6-c83d95046101",
"clientTrackingId": "56dcc153-fc96-4b8e-9002-0f5096bcd744",
"status": "Succeeded"
}
Coming to your question, I recommend you to please submit your detailed feedback in IDEAS forum here :
All the feedback shared in this forum are actively monitored and reviewed by respective product owners.
Hope this helps. Feel free to let us know for any further question on this,
Appreciate your feedback.
Thanks.