@@ -2472,20 +2472,24 @@ open class IngestionClient {
2472
2472
/// - parameter page: (query) Page number of the paginated API response. (optional)
2473
2473
/// - parameter sort: (query) Property by which to sort the list of transformations. (optional)
2474
2474
/// - parameter order: (query) Sort order of the response, ascending or descending. (optional)
2475
+ /// - parameter type: (query) Whether to filter the list of transformations by the type of transformation.
2476
+ /// (optional)
2475
2477
/// - returns: ListTransformationsResponse
2476
2478
@available ( macOS 10 . 15 , iOS 13 . 0 , tvOS 13 . 0 , watchOS 6 . 0 , * )
2477
2479
open func listTransformations(
2478
2480
itemsPerPage: Int ? = nil ,
2479
2481
page: Int ? = nil ,
2480
2482
sort: TransformationSortKeys ? = nil ,
2481
2483
order: OrderKeys ? = nil ,
2484
+ type: TransformationType ? = nil ,
2482
2485
requestOptions: RequestOptions ? = nil
2483
2486
) async throws -> ListTransformationsResponse {
2484
2487
let response : Response < ListTransformationsResponse > = try await listTransformationsWithHTTPInfo (
2485
2488
itemsPerPage: itemsPerPage,
2486
2489
page: page,
2487
2490
sort: sort,
2488
2491
order: order,
2492
+ type: type,
2489
2493
requestOptions: requestOptions
2490
2494
)
2491
2495
@@ -2509,13 +2513,16 @@ open class IngestionClient {
2509
2513
// - parameter sort: (query) Property by which to sort the list of transformations. (optional)
2510
2514
//
2511
2515
// - parameter order: (query) Sort order of the response, ascending or descending. (optional)
2516
+ //
2517
+ // - parameter type: (query) Whether to filter the list of transformations by the type of transformation. (optional)
2512
2518
// - returns: RequestBuilder<ListTransformationsResponse>
2513
2519
2514
2520
open func listTransformationsWithHTTPInfo(
2515
2521
itemsPerPage: Int ? = nil ,
2516
2522
page: Int ? = nil ,
2517
2523
sort: TransformationSortKeys ? = nil ,
2518
2524
order: OrderKeys ? = nil ,
2525
+ type: TransformationType ? = nil ,
2519
2526
requestOptions userRequestOptions: RequestOptions ? = nil
2520
2527
) async throws -> Response < ListTransformationsResponse > {
2521
2528
let resourcePath = " /1/transformations "
@@ -2525,6 +2532,7 @@ open class IngestionClient {
2525
2532
" page " : page? . encodeToJSON ( ) ,
2526
2533
" sort " : sort? . encodeToJSON ( ) ,
2527
2534
" order " : order? . encodeToJSON ( ) ,
2535
+ " type " : type? . encodeToJSON ( ) ,
2528
2536
]
2529
2537
2530
2538
let nillableHeaders : [ String : Any ? ] ? = nil
0 commit comments