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
*[create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
86
86
*[delete_destination](docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
@@ -89,14 +89,14 @@ if res.connection_response is not None:
89
89
*[patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
90
90
*[put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
91
91
92
-
### [.jobs](docs/sdks/jobs/README.md)
92
+
### [jobs](docs/sdks/jobs/README.md)
93
93
94
94
*[cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
95
95
*[create_job](docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
96
96
*[get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
97
97
*[list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
98
98
99
-
### [.sources](docs/sdks/sources/README.md)
99
+
### [sources](docs/sdks/sources/README.md)
100
100
101
101
*[create_source](docs/sdks/sources/README.md#create_source) - Create a source
102
102
*[delete_source](docs/sdks/sources/README.md#delete_source) - Delete a Source
@@ -106,11 +106,11 @@ if res.connection_response is not None:
106
106
*[patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
107
107
*[put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
108
108
109
-
### [.streams](docs/sdks/streams/README.md)
109
+
### [streams](docs/sdks/streams/README.md)
110
110
111
111
*[get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
112
112
113
-
### [.workspaces](docs/sdks/workspaces/README.md)
113
+
### [workspaces](docs/sdks/workspaces/README.md)
114
114
115
115
*[create_or_update_workspace_o_auth_credentials](docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
116
116
*[create_workspace](docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
@@ -143,7 +143,64 @@ Here's an example of one such pagination call:
143
143
<!-- Start Error Handling -->
144
144
# Error Handling
145
145
146
-
Handling errors in your SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
146
+
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
@@ -265,7 +322,7 @@ if res.connection_response is not None:
265
322
The Python SDK makes API calls using the (requests)[https://pypi.org/project/requests/] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
266
323
267
324
268
-
For example, you could specify a header for every request that your sdk makes as follows:
325
+
For example, you could specify a header for every request that this sdk makes as follows:
269
326
270
327
```python
271
328
import airbyte
@@ -280,12 +337,11 @@ s = airbyte.Airbyte(client: http_client)
280
337
281
338
282
339
<!-- Start Authentication -->
283
-
284
340
# Authentication
285
341
286
342
## Per-Client Security Schemes
287
343
288
-
Your SDK supports the following security schemes globally:
344
+
This SDK supports the following security schemes globally:
0 commit comments