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
Copy file name to clipboardexpand all lines: airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml
+15
Original file line number
Diff line number
Diff line change
@@ -2435,6 +2435,21 @@ definitions:
2435
2435
anyOf:
2436
2436
- "$ref": "#/definitions/CustomRequester"
2437
2437
- "$ref": "#/definitions/HttpRequester"
2438
+
download_paginator:
2439
+
description: Paginator component that describes how to navigate through the API's pages during download.
2440
+
anyOf:
2441
+
- "$ref": "#/definitions/DefaultPaginator"
2442
+
- "$ref": "#/definitions/NoPagination"
2443
+
abort_requester:
2444
+
description: Requester component that describes how to prepare HTTP requests to send to the source API to abort a job once it is timed out from the source's perspective.
2445
+
anyOf:
2446
+
- "$ref": "#/definitions/CustomRequester"
2447
+
- "$ref": "#/definitions/HttpRequester"
2448
+
delete_requester:
2449
+
description: Requester component that describes how to prepare HTTP requests to send to the source API to delete a job once the records are extracted.
2450
+
anyOf:
2451
+
- "$ref": "#/definitions/CustomRequester"
2452
+
- "$ref": "#/definitions/HttpRequester"
2438
2453
partition_router:
2439
2454
title: Partition Router
2440
2455
description: PartitionRouter component that describes how to partition the stream, enabling incremental syncs and checkpointing.
Copy file name to clipboardexpand all lines: airbyte-cdk/python/airbyte_cdk/sources/declarative/models/declarative_component_schema.py
+12
Original file line number
Diff line number
Diff line change
@@ -1653,6 +1653,18 @@ class AsyncRetriever(BaseModel):
1653
1653
...,
1654
1654
description='Requester component that describes how to prepare HTTP requests to send to the source API to download the data provided by the completed async job.',
description="Requester component that describes how to prepare HTTP requests to send to the source API to abort a job once it is timed out from the source's perspective.",
description='Requester component that describes how to prepare HTTP requests to send to the source API to delete a job once the records are extracted.',
0 commit comments