From c381a7b84bf9ea81bef6e89cee045a9e379d5099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Karla=C5=A1?= Date: Sat, 28 Oct 2023 04:03:02 +0200 Subject: [PATCH] [ADF] Add ability to filter PipelineRuns by `TriggeredByName` Also expanded list of valid filters for PipelineRuns with `LatestOnly` and `RunGroupId` based on what API returned as possible values(it also listed `SandboxId`, but since that seems very undocumented thing, I decided to not add it here). --- .../Microsoft.DataFactory/stable/2018-06-01/datafactory.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json index b78b645cf1aa..7ce9df52f537 100644 --- a/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json +++ b/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json @@ -6458,11 +6458,11 @@ "description": "Query filter option for listing runs.", "type": "object", "properties": { - "operand": { - "description": "Parameter name to be used for filter. The allowed operands to query pipeline runs are PipelineName, RunStart, RunEnd and Status; to query activity runs are ActivityName, ActivityRunStart, ActivityRunEnd, ActivityType and Status, and to query trigger runs are TriggerName, TriggerRunTimestamp and Status.", + "description": "Parameter name to be used for filter. The allowed operands to query pipeline runs are PipelineName, TriggeredByName, LatestOnly, RunGroupId, RunStart, RunEnd and Status; to query activity runs are ActivityName, ActivityRunStart, ActivityRunEnd, ActivityType and Status, and to query trigger runs are TriggerName, TriggerRunTimestamp and Status.", "type": "string", "enum": [ "PipelineName", + "TriggeredByName", "Status", "RunStart", "RunEnd",