Skip to content

Commit 7156436

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.91.0
1 parent a900be6 commit 7156436

File tree

70 files changed

+375
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+375
-235
lines changed

README.md

Lines changed: 38 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ pip install airbyte-api
2323

2424
## SDK Example Usage
2525
<!-- Start SDK Example Usage -->
26-
27-
2826
```python
2927
import airbyte
3028
from airbyte.models import shared
@@ -43,31 +41,31 @@ req = shared.ConnectionCreateRequest(
4341
streams=[
4442
shared.StreamConfiguration(
4543
cursor_field=[
46-
'corrupti',
44+
'iure',
4745
],
48-
name='Kelvin Sporer',
46+
name='Dr. Rickey Boyle',
4947
primary_key=[
5048
[
51-
'corrupti',
49+
'mollitia',
5250
],
5351
],
54-
sync_mode=shared.ConnectionSyncModeEnum.INCREMENTAL_DEDUPED_HISTORY,
52+
sync_mode=shared.ConnectionSyncModeEnum.INCREMENTAL_APPEND,
5553
),
5654
],
5755
),
58-
data_residency=shared.GeographyEnum.US,
59-
destination_id='9a674e0f-467c-4c87-96ed-151a05dfc2dd',
60-
name='Javier Schmidt',
61-
namespace_definition=shared.NamespaceDefinitionEnum.DESTINATION,
56+
data_residency=shared.GeographyEnum.AUTO,
57+
destination_id='352c5955-907a-4ff1-a3a2-fa9467739251',
58+
name='Matt Hamill',
59+
namespace_definition=shared.NamespaceDefinitionEnum.SOURCE,
6260
namespace_format='${SOURCE_NAMESPACE}',
6361
non_breaking_schema_updates_behavior=shared.NonBreakingSchemaUpdatesBehaviorEnum.PROPAGATE_FULLY,
64-
prefix='dolorum',
62+
prefix='ipsam',
6563
schedule=shared.ConnectionSchedule(
66-
cron_expression='dicta',
64+
cron_expression='id',
6765
schedule_type=shared.ScheduleTypeEnum.CRON,
6866
),
69-
source_id='a928fc81-6742-4cb7-b920-5929396fea75',
70-
status=shared.ConnectionStatusEnum.INACTIVE,
67+
source_id='019da1ff-e78f-4097-b007-4f15471b5e6e',
68+
status=shared.ConnectionStatusEnum.ACTIVE,
7169
)
7270

7371
res = s.connections.create_connection(req)
@@ -129,6 +127,32 @@ 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+
135+
136+
<!-- End Dev Containers -->
137+
138+
139+
140+
<!-- Start Pagination -->
141+
# Pagination
142+
143+
Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
144+
returned response object will have a `Next` method that can be called to pull down the next group of results. If the
145+
return value of `Next` is `None`, then there are no more pages to be fetched.
146+
147+
Here's an example of one such pagination call:
148+
149+
150+
<!-- End Pagination -->
151+
152+
<!-- Placeholder for Future Speakeasy SDK Sections -->
153+
154+
155+
132156
### Maturity
133157

134158
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,4 +588,14 @@ Based on:
588588
### Generated
589589
- [python v0.35.6] .
590590
### Releases
591-
- [PyPI v0.35.6] https://pypi.org/project/airbyte-api/0.35.6 - .
591+
- [PyPI v0.35.6] https://pypi.org/project/airbyte-api/0.35.6 - .
592+
593+
## 2023-09-26 00:13:12
594+
### Changes
595+
Based on:
596+
- OpenAPI Doc 1.0.0
597+
- Speakeasy CLI 1.91.0 (2.129.1) https://github.com/speakeasy-api/speakeasy
598+
### Generated
599+
- [python v0.36.0] .
600+
### Releases
601+
- [PyPI v0.36.0] https://pypi.org/project/airbyte-api/0.36.0 - .

docs/models/operations/canceljobresponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
8-
| `content_type` | *str* | :heavy_check_mark: | N/A |
8+
| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `job_response` | [Optional[shared.JobResponse]](../../models/shared/jobresponse.md) | :heavy_minus_sign: | Cancel a Job. |
10-
| `status_code` | *int* | :heavy_check_mark: | N/A |
11-
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
10+
| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

docs/models/operations/createconnectionresponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
88
| `connection_response` | [Optional[shared.ConnectionResponse]](../../models/shared/connectionresponse.md) | :heavy_minus_sign: | Successful operation |
9-
| `content_type` | *str* | :heavy_check_mark: | N/A |
10-
| `status_code` | *int* | :heavy_check_mark: | N/A |
11-
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
9+
| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation |
10+
| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

docs/models/operations/createdestinationresponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
8-
| `content_type` | *str* | :heavy_check_mark: | N/A |
8+
| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `destination_response` | [Optional[shared.DestinationResponse]](../../models/shared/destinationresponse.md) | :heavy_minus_sign: | Successful operation |
10-
| `status_code` | *int* | :heavy_check_mark: | N/A |
11-
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
10+
| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

docs/models/operations/createjobresponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| Field | Type | Required | Description |
77
| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
8-
| `content_type` | *str* | :heavy_check_mark: | N/A |
8+
| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `job_response` | [Optional[shared.JobResponse]](../../models/shared/jobresponse.md) | :heavy_minus_sign: | Kicks off a new Job based on the JobType. The connectionId is the resource that Job will be run for. |
10-
| `status_code` | *int* | :heavy_check_mark: | N/A |
11-
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
10+
| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

docs/models/operations/createorupdateworkspaceoauthcredentialsresponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
8-
| `content_type` | *str* | :heavy_check_mark: | N/A |
9-
| `status_code` | *int* | :heavy_check_mark: | N/A |
10-
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
8+
| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

0 commit comments

Comments
 (0)