@@ -23,8 +23,6 @@ pip install airbyte-api
2323
2424## SDK Example Usage
2525<!-- Start SDK Example Usage -->
26-
27-
2826``` python
2927import airbyte
3028from airbyte.models import shared
@@ -43,30 +41,30 @@ req = shared.ConnectionCreateRequest(
4341 streams = [
4442 shared.StreamConfiguration(
4543 cursor_field = [
46- ' corrupti ' ,
44+ ' violet ' ,
4745 ],
48- name = ' Kelvin Sporer ' ,
46+ name = ' at BMW ' ,
4947 primary_key = [
5048 [
51- ' corrupti ' ,
49+ ' pfft ' ,
5250 ],
5351 ],
54- sync_mode = shared.ConnectionSyncModeEnum.INCREMENTAL_DEDUPED_HISTORY ,
52+ sync_mode = shared.ConnectionSyncModeEnum.FULL_REFRESH_APPEND ,
5553 ),
5654 ],
5755 ),
58- data_residency = shared.GeographyEnum.US ,
59- destination_id = ' 9a674e0f-467c-4c87-96ed-151a05dfc2dd ' ,
60- name = ' Javier Schmidt ' ,
56+ data_residency = shared.GeographyEnum.AUTO ,
57+ destination_id = ' 083eafc8-5591-44e0-a570-f6dd427d83a5 ' ,
58+ name = ' mesh interactive ' ,
6159 namespace_definition = shared.NamespaceDefinitionEnum.DESTINATION ,
6260 namespace_format = ' ${SOURCE_NAMESPACE} ' ,
63- non_breaking_schema_updates_behavior = shared.NonBreakingSchemaUpdatesBehaviorEnum.PROPAGATE_FULLY ,
64- prefix = ' dolorum ' ,
61+ non_breaking_schema_updates_behavior = shared.NonBreakingSchemaUpdatesBehaviorEnum.IGNORE ,
62+ prefix = ' port Idaho ' ,
6563 schedule = shared.ConnectionSchedule(
66- cron_expression = ' dicta ' ,
67- schedule_type = shared.ScheduleTypeEnum.CRON ,
64+ cron_expression = ' productivity ' ,
65+ schedule_type = shared.ScheduleTypeEnum.MANUAL ,
6866 ),
69- source_id = ' a928fc81-6742-4cb7-b920-5929396fea75 ' ,
67+ source_id = ' b3fd2fd3-07d6-40cb-97ea-6dfc635b80f2 ' ,
7068 status = shared.ConnectionStatusEnum.INACTIVE ,
7169)
7270
@@ -129,6 +127,28 @@ if res.connection_response is not None:
129127* [ update_workspace] ( docs/sdks/workspaces/README.md#update_workspace ) - Update a workspace
130128<!-- End SDK Available Operations -->
131129
130+
131+
132+ <!-- Start Dev Containers -->
133+
134+ <!-- End Dev Containers -->
135+
136+
137+
138+ <!-- Start Pagination -->
139+ # Pagination
140+
141+ Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
142+ returned response object will have a ` Next ` method that can be called to pull down the next group of results. If the
143+ return value of ` Next ` is ` None ` , then there are no more pages to be fetched.
144+
145+ Here's an example of one such pagination call:
146+ <!-- End Pagination -->
147+
148+ <!-- Placeholder for Future Speakeasy SDK Sections -->
149+
150+
151+
132152### Maturity
133153
134154This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
0 commit comments