@@ -2134,6 +2134,7 @@ open class IngestionClient {
2134
2134
/// - parameter action: (query) Actions for filtering the list of tasks. (optional)
2135
2135
/// - parameter enabled: (query) Whether to filter the list of tasks by the `enabled` status. (optional)
2136
2136
/// - parameter sourceID: (query) Source IDs for filtering the list of tasks. (optional)
2137
+ /// - parameter sourceType: (query) Filters the tasks with the specified source type. (optional)
2137
2138
/// - parameter destinationID: (query) Destination IDs for filtering the list of tasks. (optional)
2138
2139
/// - parameter triggerType: (query) Type of task trigger for filtering the list of tasks. (optional)
2139
2140
/// - parameter sort: (query) Property by which to sort the list of tasks. (optional)
@@ -2146,6 +2147,7 @@ open class IngestionClient {
2146
2147
action: [ ActionType ] ? = nil ,
2147
2148
enabled: Bool ? = nil ,
2148
2149
sourceID: [ String ] ? = nil ,
2150
+ sourceType: [ SourceType ] ? = nil ,
2149
2151
destinationID: [ String ] ? = nil ,
2150
2152
triggerType: [ TriggerType ] ? = nil ,
2151
2153
sort: TaskSortKeys ? = nil ,
@@ -2158,6 +2160,7 @@ open class IngestionClient {
2158
2160
action: action,
2159
2161
enabled: enabled,
2160
2162
sourceID: sourceID,
2163
+ sourceType: sourceType,
2161
2164
destinationID: destinationID,
2162
2165
triggerType: triggerType,
2163
2166
sort: sort,
@@ -2188,6 +2191,8 @@ open class IngestionClient {
2188
2191
//
2189
2192
// - parameter sourceID: (query) Source IDs for filtering the list of tasks. (optional)
2190
2193
//
2194
+ // - parameter sourceType: (query) Filters the tasks with the specified source type. (optional)
2195
+ //
2191
2196
// - parameter destinationID: (query) Destination IDs for filtering the list of tasks. (optional)
2192
2197
//
2193
2198
// - parameter triggerType: (query) Type of task trigger for filtering the list of tasks. (optional)
@@ -2203,6 +2208,7 @@ open class IngestionClient {
2203
2208
action: [ ActionType ] ? = nil ,
2204
2209
enabled: Bool ? = nil ,
2205
2210
sourceID: [ String ] ? = nil ,
2211
+ sourceType: [ SourceType ] ? = nil ,
2206
2212
destinationID: [ String ] ? = nil ,
2207
2213
triggerType: [ TriggerType ] ? = nil ,
2208
2214
sort: TaskSortKeys ? = nil ,
@@ -2217,6 +2223,7 @@ open class IngestionClient {
2217
2223
" action " : action? . encodeToJSON ( ) ,
2218
2224
" enabled " : enabled? . encodeToJSON ( ) ,
2219
2225
" sourceID " : sourceID? . encodeToJSON ( ) ,
2226
+ " sourceType " : sourceType? . encodeToJSON ( ) ,
2220
2227
" destinationID " : destinationID? . encodeToJSON ( ) ,
2221
2228
" triggerType " : triggerType? . encodeToJSON ( ) ,
2222
2229
" sort " : sort? . encodeToJSON ( ) ,
0 commit comments