File tree Expand file tree Collapse file tree 23 files changed +156
-34
lines changed
Expand file tree Collapse file tree 23 files changed +156
-34
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ pip install airbyte-api
2323
2424## SDK Example Usage
2525<!-- Start SDK Example Usage -->
26+
27+
2628``` python
2729import airbyte
2830from airbyte.models import shared
Original file line number Diff line number Diff line change @@ -326,4 +326,44 @@ Based on:
326326- OpenAPI Doc 1.0.0
327327- Speakeasy CLI 1.56.0 (2.61.0) https://github.com/speakeasy-api/speakeasy
328328### Releases
329- - [ PyPI v0.21.0] https://pypi.org/project/airbyte-api/0.21.0 - .
329+ - [ PyPI v0.21.0] https://pypi.org/project/airbyte-api/0.21.0 - .
330+
331+ ## 2023-07-12 09:18:13
332+ ### Changes
333+ Based on:
334+ - OpenAPI Doc 1.0.0
335+ - Speakeasy CLI 1.56.4 (2.61.5) https://github.com/speakeasy-api/speakeasy
336+ ### Releases
337+ - [ PyPI v0.21.1] https://pypi.org/project/airbyte-api/0.21.1 - .
338+
339+ ## 2023-07-13 00:16:36
340+ ### Changes
341+ Based on:
342+ - OpenAPI Doc 1.0.0
343+ - Speakeasy CLI 1.57.0 (2.62.1) https://github.com/speakeasy-api/speakeasy
344+ ### Releases
345+ - [ PyPI v0.22.0] https://pypi.org/project/airbyte-api/0.22.0 - .
346+
347+ ## 2023-07-14 00:16:28
348+ ### Changes
349+ Based on:
350+ - OpenAPI Doc 1.0.0
351+ - Speakeasy CLI 1.59.0 (2.65.0) https://github.com/speakeasy-api/speakeasy
352+ ### Releases
353+ - [ PyPI v0.23.0] https://pypi.org/project/airbyte-api/0.23.0 - .
354+
355+ ## 2023-07-18 00:23:32
356+ ### Changes
357+ Based on:
358+ - OpenAPI Doc 1.0.0
359+ - Speakeasy CLI 1.61.0 (2.70.0) https://github.com/speakeasy-api/speakeasy
360+ ### Releases
361+ - [ PyPI v0.24.0] https://pypi.org/project/airbyte-api/0.24.0 - .
362+
363+ ## 2023-07-19 00:22:38
364+ ### Changes
365+ Based on:
366+ - OpenAPI Doc 1.0.0
367+ - Speakeasy CLI 1.62.1 (2.70.2) https://github.com/speakeasy-api/speakeasy
368+ ### Releases
369+ - [ PyPI v0.24.1] https://pypi.org/project/airbyte-api/0.24.1 - .
Original file line number Diff line number Diff line change 11<!-- Start SDK Example Usage -->
2+
3+
24``` python
35import airbyte
46from airbyte.models import shared
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ Delete a Connection
100100
101101``` python
102102import airbyte
103- from airbyte.models import operations
103+ from airbyte.models import operations, shared
104104
105105s = airbyte.Airbyte(
106106 security = shared.Security(
@@ -138,7 +138,7 @@ Get Connection details
138138
139139``` python
140140import airbyte
141- from airbyte.models import operations
141+ from airbyte.models import operations, shared
142142
143143s = airbyte.Airbyte(
144144 security = shared.Security(
@@ -176,7 +176,7 @@ List connections
176176
177177``` python
178178import airbyte
179- from airbyte.models import operations
179+ from airbyte.models import operations, shared
180180
181181s = airbyte.Airbyte(
182182 security = shared.Security(
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Delete a Destination
6767
6868``` python
6969import airbyte
70- from airbyte.models import operations
70+ from airbyte.models import operations, shared
7171
7272s = airbyte.Airbyte(
7373 security = shared.Security(
@@ -105,7 +105,7 @@ Get Destination details
105105
106106``` python
107107import airbyte
108- from airbyte.models import operations
108+ from airbyte.models import operations, shared
109109
110110s = airbyte.Airbyte(
111111 security = shared.Security(
@@ -143,7 +143,7 @@ List destinations
143143
144144``` python
145145import airbyte
146- from airbyte.models import operations
146+ from airbyte.models import operations, shared
147147
148148s = airbyte.Airbyte(
149149 security = shared.Security(
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Cancel a running Job
1515
1616``` python
1717import airbyte
18- from airbyte.models import operations
18+ from airbyte.models import operations, shared
1919
2020s = airbyte.Airbyte(
2121 security = shared.Security(
@@ -92,7 +92,7 @@ Get Job status and details
9292
9393``` python
9494import airbyte
95- from airbyte.models import operations
95+ from airbyte.models import operations, shared
9696
9797s = airbyte.Airbyte(
9898 security = shared.Security(
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Delete a Source
6565
6666``` python
6767import airbyte
68- from airbyte.models import operations
68+ from airbyte.models import operations, shared
6969
7070s = airbyte.Airbyte(
7171 security = shared.Security(
@@ -103,7 +103,7 @@ Get Source details
103103
104104``` python
105105import airbyte
106- from airbyte.models import operations
106+ from airbyte.models import operations, shared
107107
108108s = airbyte.Airbyte(
109109 security = shared.Security(
@@ -186,7 +186,7 @@ List sources
186186
187187``` python
188188import airbyte
189- from airbyte.models import operations
189+ from airbyte.models import operations, shared
190190
191191s = airbyte.Airbyte(
192192 security = shared.Security(
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Get stream properties
1212
1313``` python
1414import airbyte
15- from airbyte.models import operations
15+ from airbyte.models import operations, shared
1616
1717s = airbyte.Airbyte(
1818 security = shared.Security(
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ Delete a Workspace
106106
107107``` python
108108import airbyte
109- from airbyte.models import operations
109+ from airbyte.models import operations, shared
110110
111111s = airbyte.Airbyte(
112112 security = shared.Security(
@@ -144,7 +144,7 @@ Get Workspace details
144144
145145``` python
146146import airbyte
147- from airbyte.models import operations
147+ from airbyte.models import operations, shared
148148
149149s = airbyte.Airbyte(
150150 security = shared.Security(
@@ -182,7 +182,7 @@ List workspaces
182182
183183``` python
184184import airbyte
185- from airbyte.models import operations
185+ from airbyte.models import operations, shared
186186
187187s = airbyte.Airbyte(
188188 security = shared.Security(
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ pylintrc
1010setup.py
1111src/airbyte/__init__.py
1212src/airbyte/models/__init__.py
13+ src/airbyte/models/errors/sdkerror.py
1314src/airbyte/utils/__init__.py
1415src/airbyte/utils/retries.py
1516src/airbyte/utils/utils.py
@@ -365,6 +366,7 @@ src/airbyte/models/shared/workspacesresponse.py
365366src/airbyte/models/shared/workspaceupdaterequest.py
366367src/airbyte/models/shared/security.py
367368src/airbyte/models/shared/__init__.py
369+ src/airbyte/models/errors/__init__.py
368370docs/sdks/airbyte/README.md
369371docs/sdks/connections/README.md
370372docs/sdks/destinations/README.md
You can’t perform that action at this time.
0 commit comments