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
@@ -13,25 +13,28 @@ Developers will need to create an API Key within your [Developer Portal](https:/
13
13
14
14
The Developer Portal UI can also be used to help build your integration by showing information about network requests in the Requests tab. API usage information is also available to you in the Usage tab.
*[create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
@@ -118,25 +120,262 @@ if res.connection_response is not None:
118
120
*[get_workspace](docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
119
121
*[list_workspaces](docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
120
122
*[update_workspace](docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
121
-
<!-- End SDK Available Operations -->
123
+
<!-- End Available Resources and Operations [operations] -->
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
<!-- Start Error Handling [errors] -->
132
+
## Error Handling
133
+
134
+
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.
You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
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.
308
+
309
+
For example, you could specify a header for every request that this sdk makes as follows:
This SDK supports the following security schemes globally:
328
+
329
+
| Name | Type | Scheme |
330
+
| ------------- | ------------- | ------------- |
331
+
|`basic_auth`| http | HTTP Basic |
332
+
|`bearer_auth`| http | HTTP Bearer |
333
+
334
+
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
335
+
```python
336
+
import airbyte
337
+
from airbyte.models import shared
133
338
134
-
Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
135
-
returned response object will have a `Next` method that can be called to pull down the next group of results. If the
136
-
return value of `Next` is `None`, then there are no more pages to be fetched.
0 commit comments