@@ -2921,6 +2921,10 @@ async def list_tasks_with_http_info(
2921
2921
Optional [List [StrictStr ]],
2922
2922
Field (description = "Source IDs for filtering the list of tasks." ),
2923
2923
] = None ,
2924
+ source_type : Annotated [
2925
+ Optional [List [SourceType ]],
2926
+ Field (description = "Filters the tasks with the specified source type." ),
2927
+ ] = None ,
2924
2928
destination_id : Annotated [
2925
2929
Optional [List [StrictStr ]],
2926
2930
Field (description = "Destination IDs for filtering the list of tasks." ),
@@ -2965,6 +2969,8 @@ async def list_tasks_with_http_info(
2965
2969
:type enabled: bool
2966
2970
:param source_id: Source IDs for filtering the list of tasks.
2967
2971
:type source_id: List[str]
2972
+ :param source_type: Filters the tasks with the specified source type.
2973
+ :type source_type: List[SourceType]
2968
2974
:param destination_id: Destination IDs for filtering the list of tasks.
2969
2975
:type destination_id: List[str]
2970
2976
:param trigger_type: Type of task trigger for filtering the list of tasks.
@@ -2989,6 +2995,8 @@ async def list_tasks_with_http_info(
2989
2995
_query_parameters ["enabled" ] = enabled
2990
2996
if source_id is not None :
2991
2997
_query_parameters ["sourceID" ] = source_id
2998
+ if source_type is not None :
2999
+ _query_parameters ["sourceType" ] = source_type
2992
3000
if destination_id is not None :
2993
3001
_query_parameters ["destinationID" ] = destination_id
2994
3002
if trigger_type is not None :
@@ -3032,6 +3040,10 @@ async def list_tasks(
3032
3040
Optional [List [StrictStr ]],
3033
3041
Field (description = "Source IDs for filtering the list of tasks." ),
3034
3042
] = None ,
3043
+ source_type : Annotated [
3044
+ Optional [List [SourceType ]],
3045
+ Field (description = "Filters the tasks with the specified source type." ),
3046
+ ] = None ,
3035
3047
destination_id : Annotated [
3036
3048
Optional [List [StrictStr ]],
3037
3049
Field (description = "Destination IDs for filtering the list of tasks." ),
@@ -3076,6 +3088,8 @@ async def list_tasks(
3076
3088
:type enabled: bool
3077
3089
:param source_id: Source IDs for filtering the list of tasks.
3078
3090
:type source_id: List[str]
3091
+ :param source_type: Filters the tasks with the specified source type.
3092
+ :type source_type: List[SourceType]
3079
3093
:param destination_id: Destination IDs for filtering the list of tasks.
3080
3094
:type destination_id: List[str]
3081
3095
:param trigger_type: Type of task trigger for filtering the list of tasks.
@@ -3093,6 +3107,7 @@ async def list_tasks(
3093
3107
action ,
3094
3108
enabled ,
3095
3109
source_id ,
3110
+ source_type ,
3096
3111
destination_id ,
3097
3112
trigger_type ,
3098
3113
sort ,
@@ -7639,6 +7654,10 @@ def list_tasks_with_http_info(
7639
7654
Optional [List [StrictStr ]],
7640
7655
Field (description = "Source IDs for filtering the list of tasks." ),
7641
7656
] = None ,
7657
+ source_type : Annotated [
7658
+ Optional [List [SourceType ]],
7659
+ Field (description = "Filters the tasks with the specified source type." ),
7660
+ ] = None ,
7642
7661
destination_id : Annotated [
7643
7662
Optional [List [StrictStr ]],
7644
7663
Field (description = "Destination IDs for filtering the list of tasks." ),
@@ -7683,6 +7702,8 @@ def list_tasks_with_http_info(
7683
7702
:type enabled: bool
7684
7703
:param source_id: Source IDs for filtering the list of tasks.
7685
7704
:type source_id: List[str]
7705
+ :param source_type: Filters the tasks with the specified source type.
7706
+ :type source_type: List[SourceType]
7686
7707
:param destination_id: Destination IDs for filtering the list of tasks.
7687
7708
:type destination_id: List[str]
7688
7709
:param trigger_type: Type of task trigger for filtering the list of tasks.
@@ -7707,6 +7728,8 @@ def list_tasks_with_http_info(
7707
7728
_query_parameters ["enabled" ] = enabled
7708
7729
if source_id is not None :
7709
7730
_query_parameters ["sourceID" ] = source_id
7731
+ if source_type is not None :
7732
+ _query_parameters ["sourceType" ] = source_type
7710
7733
if destination_id is not None :
7711
7734
_query_parameters ["destinationID" ] = destination_id
7712
7735
if trigger_type is not None :
@@ -7750,6 +7773,10 @@ def list_tasks(
7750
7773
Optional [List [StrictStr ]],
7751
7774
Field (description = "Source IDs for filtering the list of tasks." ),
7752
7775
] = None ,
7776
+ source_type : Annotated [
7777
+ Optional [List [SourceType ]],
7778
+ Field (description = "Filters the tasks with the specified source type." ),
7779
+ ] = None ,
7753
7780
destination_id : Annotated [
7754
7781
Optional [List [StrictStr ]],
7755
7782
Field (description = "Destination IDs for filtering the list of tasks." ),
@@ -7794,6 +7821,8 @@ def list_tasks(
7794
7821
:type enabled: bool
7795
7822
:param source_id: Source IDs for filtering the list of tasks.
7796
7823
:type source_id: List[str]
7824
+ :param source_type: Filters the tasks with the specified source type.
7825
+ :type source_type: List[SourceType]
7797
7826
:param destination_id: Destination IDs for filtering the list of tasks.
7798
7827
:type destination_id: List[str]
7799
7828
:param trigger_type: Type of task trigger for filtering the list of tasks.
@@ -7811,6 +7840,7 @@ def list_tasks(
7811
7840
action ,
7812
7841
enabled ,
7813
7842
source_id ,
7843
+ source_type ,
7814
7844
destination_id ,
7815
7845
trigger_type ,
7816
7846
sort ,
0 commit comments