You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# @param items_per_page [Integer] Number of items per page. (default to 10)
1373
1373
# @param page [Integer] Page number of the paginated API response.
1374
1374
# @param type [Array<AuthenticationType>] Type of authentication resource to retrieve.
1375
-
# @param platform [Array<PlatformWithNone>] Ecommerce platform for which to retrieve authentication resources.
1376
-
# @param sort [AuthenticationSortKeys] Property by which to sort the list of authentication resources. (default to 'createdAt')
1375
+
# @param platform [Array<PlatformWithNone>] Ecommerce platform for which to retrieve authentications.
1376
+
# @param sort [AuthenticationSortKeys] Property by which to sort the list of authentications. (default to 'createdAt')
1377
1377
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
1378
1378
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
# @param items_per_page [Integer] Number of items per page. (default to 10)
1442
1442
# @param page [Integer] Page number of the paginated API response.
1443
1443
# @param type [Array<AuthenticationType>] Type of authentication resource to retrieve.
1444
-
# @param platform [Array<PlatformWithNone>] Ecommerce platform for which to retrieve authentication resources.
1445
-
# @param sort [AuthenticationSortKeys] Property by which to sort the list of authentication resources. (default to 'createdAt')
1444
+
# @param platform [Array<PlatformWithNone>] Ecommerce platform for which to retrieve authentications.
1445
+
# @param sort [AuthenticationSortKeys] Property by which to sort the list of authentications. (default to 'createdAt')
1446
1446
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
1447
1447
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1448
1448
# @return [ListAuthenticationsResponse]
@@ -1472,6 +1472,7 @@ def list_authentications(
1472
1472
# @param page [Integer] Page number of the paginated API response.
1473
1473
# @param type [Array<DestinationType>] Destination type.
1474
1474
# @param authentication_id [Array<String>] Authentication ID used by destinations.
1475
+
# @param transformation_id [String] Get the list of destinations used by a transformation.
1475
1476
# @param sort [DestinationSortKeys] Property by which to sort the destinations. (default to 'createdAt')
1476
1477
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
1477
1478
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
# @param page [Integer] Page number of the paginated API response.
1545
1548
# @param type [Array<DestinationType>] Destination type.
1546
1549
# @param authentication_id [Array<String>] Authentication ID used by destinations.
1550
+
# @param transformation_id [String] Get the list of destinations used by a transformation.
1547
1551
# @param sort [DestinationSortKeys] Property by which to sort the destinations. (default to 'createdAt')
1548
1552
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
1549
1553
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -1553,6 +1557,7 @@ def list_destinations(
1553
1557
page=nil,
1554
1558
type=nil,
1555
1559
authentication_id=nil,
1560
+
transformation_id=nil,
1556
1561
sort=nil,
1557
1562
order=nil,
1558
1563
request_options={}
@@ -1562,6 +1567,7 @@ def list_destinations(
1562
1567
page,
1563
1568
type,
1564
1569
authentication_id,
1570
+
transformation_id,
1565
1571
sort,
1566
1572
order,
1567
1573
request_options
@@ -1829,7 +1835,7 @@ def list_runs(
1829
1835
# @param items_per_page [Integer] Number of items per page. (default to 10)
1830
1836
# @param page [Integer] Page number of the paginated API response.
1831
1837
# @param type [Array<SourceType>] Source type. Some sources require authentication.
1832
-
# @param authentication_id [Array<String>] Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication resource.
1838
+
# @param authentication_id [Array<String>] Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication.
1833
1839
# @param sort [SourceSortKeys] Property by which to sort the list of sources. (default to 'createdAt')
1834
1840
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
1835
1841
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
# @param items_per_page [Integer] Number of items per page. (default to 10)
1902
1908
# @param page [Integer] Page number of the paginated API response.
1903
1909
# @param type [Array<SourceType>] Source type. Some sources require authentication.
1904
-
# @param authentication_id [Array<String>] Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication resource.
1910
+
# @param authentication_id [Array<String>] Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication.
1905
1911
# @param sort [SourceSortKeys] Property by which to sort the list of sources. (default to 'createdAt')
1906
1912
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
1907
1913
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -2185,7 +2191,7 @@ def list_tasks_v1(
2185
2191
# - editSettings
2186
2192
# @param items_per_page [Integer] Number of items per page. (default to 10)
2187
2193
# @param page [Integer] Page number of the paginated API response.
2188
-
# @param sort [SortKeys] Property by which to sort the list. (default to 'desc')
2194
+
# @param sort [TransformationSortKeys] Property by which to sort the list of transformations. (default to 'createdAt')
2189
2195
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
2190
2196
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
# @param items_per_page [Integer] Number of items per page. (default to 10)
2250
2256
# @param page [Integer] Page number of the paginated API response.
2251
-
# @param sort [SortKeys] Property by which to sort the list. (default to 'desc')
2257
+
# @param sort [TransformationSortKeys] Property by which to sort the list of transformations. (default to 'createdAt')
2252
2258
# @param order [OrderKeys] Sort order of the response, ascending or descending. (default to 'desc')
2253
2259
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
0 commit comments