@@ -1032,6 +1032,8 @@ class IngestionClient(
1032
1032
* Whether to filter the list of tasks by the `enabled` status.
1033
1033
* @param sourceID
1034
1034
* Source IDs for filtering the list of tasks.
1035
+ * @param sourceType
1036
+ * Filters the tasks with the specified source type.
1035
1037
* @param destinationID
1036
1038
* Destination IDs for filtering the list of tasks.
1037
1039
* @param triggerType
@@ -1047,6 +1049,7 @@ class IngestionClient(
1047
1049
action : Option [Seq [ActionType ]] = None ,
1048
1050
enabled : Option [Boolean ] = None ,
1049
1051
sourceID : Option [Seq [String ]] = None ,
1052
+ sourceType : Option [Seq [SourceType ]] = None ,
1050
1053
destinationID : Option [Seq [String ]] = None ,
1051
1054
triggerType : Option [Seq [TriggerType ]] = None ,
1052
1055
sort : Option [TaskSortKeys ] = None ,
@@ -1063,6 +1066,7 @@ class IngestionClient(
1063
1066
.withQueryParameter(" action" , action)
1064
1067
.withQueryParameter(" enabled" , enabled)
1065
1068
.withQueryParameter(" sourceID" , sourceID)
1069
+ .withQueryParameter(" sourceType" , sourceType)
1066
1070
.withQueryParameter(" destinationID" , destinationID)
1067
1071
.withQueryParameter(" triggerType" , triggerType)
1068
1072
.withQueryParameter(" sort" , sort)
0 commit comments