@@ -23,8 +23,6 @@ pip install airbyte-api
23
23
24
24
## SDK Example Usage
25
25
<!-- Start SDK Example Usage -->
26
-
27
-
28
26
``` python
29
27
import airbyte
30
28
from airbyte.models import shared
@@ -43,30 +41,30 @@ req = shared.ConnectionCreateRequest(
43
41
streams = [
44
42
shared.StreamConfiguration(
45
43
cursor_field = [
46
- ' corrupti ' ,
44
+ ' violet ' ,
47
45
],
48
- name = ' Kelvin Sporer ' ,
46
+ name = ' at BMW ' ,
49
47
primary_key = [
50
48
[
51
- ' corrupti ' ,
49
+ ' pfft ' ,
52
50
],
53
51
],
54
- sync_mode = shared.ConnectionSyncModeEnum.INCREMENTAL_DEDUPED_HISTORY ,
52
+ sync_mode = shared.ConnectionSyncModeEnum.FULL_REFRESH_APPEND ,
55
53
),
56
54
],
57
55
),
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 ' ,
61
59
namespace_definition = shared.NamespaceDefinitionEnum.DESTINATION ,
62
60
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 ' ,
65
63
schedule = shared.ConnectionSchedule(
66
- cron_expression = ' dicta ' ,
67
- schedule_type = shared.ScheduleTypeEnum.CRON ,
64
+ cron_expression = ' productivity ' ,
65
+ schedule_type = shared.ScheduleTypeEnum.MANUAL ,
68
66
),
69
- source_id = ' a928fc81-6742-4cb7-b920-5929396fea75 ' ,
67
+ source_id = ' b3fd2fd3-07d6-40cb-97ea-6dfc635b80f2 ' ,
70
68
status = shared.ConnectionStatusEnum.INACTIVE ,
71
69
)
72
70
@@ -129,6 +127,28 @@ if res.connection_response is not None:
129
127
* [ update_workspace] ( docs/sdks/workspaces/README.md#update_workspace ) - Update a workspace
130
128
<!-- End SDK Available Operations -->
131
129
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
+
132
152
### Maturity
133
153
134
154
This 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