@@ -1032,6 +1032,8 @@ class IngestionClient(
10321032 * Whether to filter the list of tasks by the `enabled` status.
10331033 * @param sourceID
10341034 * Source IDs for filtering the list of tasks.
1035+ * @param sourceType
1036+ * Filters the tasks with the specified source type.
10351037 * @param destinationID
10361038 * Destination IDs for filtering the list of tasks.
10371039 * @param triggerType
@@ -1047,6 +1049,7 @@ class IngestionClient(
10471049 action : Option [Seq [ActionType ]] = None ,
10481050 enabled : Option [Boolean ] = None ,
10491051 sourceID : Option [Seq [String ]] = None ,
1052+ sourceType : Option [Seq [SourceType ]] = None ,
10501053 destinationID : Option [Seq [String ]] = None ,
10511054 triggerType : Option [Seq [TriggerType ]] = None ,
10521055 sort : Option [TaskSortKeys ] = None ,
@@ -1063,6 +1066,7 @@ class IngestionClient(
10631066 .withQueryParameter(" action" , action)
10641067 .withQueryParameter(" enabled" , enabled)
10651068 .withQueryParameter(" sourceID" , sourceID)
1069+ .withQueryParameter(" sourceType" , sourceType)
10661070 .withQueryParameter(" destinationID" , destinationID)
10671071 .withQueryParameter(" triggerType" , triggerType)
10681072 .withQueryParameter(" sort" , sort)
0 commit comments