Skip to content

Commit 2bf0fae

Browse files
authored
Merge pull request #20 from airbytehq/speakeasy-sdk-regen-1686122020
chore: speakeasy sdk regeneration - Generate
2 parents 139ff16 + 79332ab commit 2bf0fae

File tree

1,436 files changed

+17514
-1891
lines changed

Some content is hidden

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

1,436 files changed

+17514
-1891
lines changed

README.md

Lines changed: 38 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ from airbyte.models import shared
2929

3030
s = airbyte.Airbyte(
3131
security=shared.Security(
32-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
32+
bearer_auth="",
3333
),
3434
)
3535

@@ -103,11 +103,12 @@ req = shared.ConnectionCreateRequest(
103103
namespace_format='${SOURCE_NAMESPACE}',
104104
non_breaking_schema_updates_behavior=shared.NonBreakingSchemaUpdatesBehaviorEnum.IGNORE,
105105
prefix='corporis',
106-
schedule=shared.ConnectionScheduleCreate(
106+
schedule=shared.ConnectionSchedule(
107107
cron_expression='explicabo',
108108
schedule_type=shared.ScheduleTypeEnum.CRON,
109109
),
110110
source_id='5955907a-ff1a-43a2-ba94-67739251aa52',
111+
status=shared.ConnectionStatusEnum.DEPRECATED,
111112
)
112113

113114
res = s.connections.create_connection(req)
@@ -121,47 +122,52 @@ if res.connection_response is not None:
121122
## Available Resources and Operations
122123

123124

124-
### [connections](docs/connections/README.md)
125+
### [connections](docs/sdks/connections/README.md)
125126

126-
* [create_connection](docs/connections/README.md#create_connection) - Create a connection
127-
* [delete_connection](docs/connections/README.md#delete_connection) - Delete a Connection
128-
* [get_connection](docs/connections/README.md#get_connection) - Get Connection details
129-
* [list_connections](docs/connections/README.md#list_connections) - List connections
127+
* [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
128+
* [delete_connection](docs/sdks/connections/README.md#delete_connection) - Delete a Connection
129+
* [get_connection](docs/sdks/connections/README.md#get_connection) - Get Connection details
130+
* [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
131+
* [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
130132

131-
### [destinations](docs/destinations/README.md)
133+
### [destinations](docs/sdks/destinations/README.md)
132134

133-
* [create_destination](docs/destinations/README.md#create_destination) - Create a destination
134-
* [delete_destination](docs/destinations/README.md#delete_destination) - Delete a Destination
135-
* [get_destination](docs/destinations/README.md#get_destination) - Get Destination details
136-
* [list_destinations](docs/destinations/README.md#list_destinations) - List destinations
135+
* [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
136+
* [delete_destination](docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
137+
* [get_destination](docs/sdks/destinations/README.md#get_destination) - Get Destination details
138+
* [list_destinations](docs/sdks/destinations/README.md#list_destinations) - List destinations
139+
* [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
140+
* [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
137141

138-
### [jobs](docs/jobs/README.md)
142+
### [jobs](docs/sdks/jobs/README.md)
139143

140-
* [cancel_job](docs/jobs/README.md#cancel_job) - Cancel a running Job
141-
* [create_job](docs/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
142-
* [get_job](docs/jobs/README.md#get_job) - Get Job status and details
143-
* [list_jobs](docs/jobs/README.md#list_jobs) - List Jobs by sync type
144+
* [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
145+
* [create_job](docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
146+
* [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
147+
* [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
144148

145-
### [sources](docs/sources/README.md)
149+
### [sources](docs/sdks/sources/README.md)
146150

147-
* [create_source](docs/sources/README.md#create_source) - Create a source
148-
* [delete_source](docs/sources/README.md#delete_source) - Delete a Source
149-
* [get_source](docs/sources/README.md#get_source) - Get Source details
150-
* [initiate_o_auth](docs/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
151-
* [list_sources](docs/sources/README.md#list_sources) - List sources
151+
* [create_source](docs/sdks/sources/README.md#create_source) - Create a source
152+
* [delete_source](docs/sdks/sources/README.md#delete_source) - Delete a Source
153+
* [get_source](docs/sdks/sources/README.md#get_source) - Get Source details
154+
* [initiate_o_auth](docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
155+
* [list_sources](docs/sdks/sources/README.md#list_sources) - List sources
156+
* [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
157+
* [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
152158

153-
### [streams](docs/streams/README.md)
159+
### [streams](docs/sdks/streams/README.md)
154160

155-
* [get_stream_properties](docs/streams/README.md#get_stream_properties) - Get stream properties
161+
* [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
156162

157-
### [workspaces](docs/workspaces/README.md)
163+
### [workspaces](docs/sdks/workspaces/README.md)
158164

159-
* [create_or_update_workspace_o_auth_credentials](docs/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
160-
* [create_workspace](docs/workspaces/README.md#create_workspace) - Create a workspace
161-
* [delete_workspace](docs/workspaces/README.md#delete_workspace) - Delete a Workspace
162-
* [get_workspace](docs/workspaces/README.md#get_workspace) - Get Workspace details
163-
* [list_workspaces](docs/workspaces/README.md#list_workspaces) - List workspaces
164-
* [update_workspace](docs/workspaces/README.md#update_workspace) - Update a workspace
165+
* [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.
166+
* [create_workspace](docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
167+
* [delete_workspace](docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace
168+
* [get_workspace](docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
169+
* [list_workspaces](docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
170+
* [update_workspace](docs/sdks/workspaces/README.md#update_workspace) - Update a workspace
165171
<!-- End SDK Available Operations -->
166172

167173
### Maturity

RELEASES.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,44 @@ Based on:
206206
- OpenAPI Doc 1.0.0
207207
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
208208
### Releases
209-
- [PyPI v0.12.1] https://pypi.org/project/airbyte-api/0.12.1 - .
209+
- [PyPI v0.12.1] https://pypi.org/project/airbyte-api/0.12.1 - .
210+
211+
## 2023-06-07 07:13:38
212+
### Changes
213+
Based on:
214+
- OpenAPI Doc 1.0.0
215+
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
216+
### Releases
217+
- [PyPI v0.12.2] https://pypi.org/project/airbyte-api/0.12.2 - .
218+
219+
## 2023-06-08 00:14:38
220+
### Changes
221+
Based on:
222+
- OpenAPI Doc 1.0.0
223+
- Speakeasy CLI 1.45.0 (2.37.0) https://github.com/speakeasy-api/speakeasy
224+
### Releases
225+
- [PyPI v0.13.0] https://pypi.org/project/airbyte-api/0.13.0 - .
226+
227+
## 2023-06-09 00:17:00
228+
### Changes
229+
Based on:
230+
- OpenAPI Doc 1.0.0
231+
- Speakeasy CLI 1.45.2 (2.37.2) https://github.com/speakeasy-api/speakeasy
232+
### Releases
233+
- [PyPI v0.13.1] https://pypi.org/project/airbyte-api/0.13.1 - .
234+
235+
## 2023-06-10 00:14:05
236+
### Changes
237+
Based on:
238+
- OpenAPI Doc 1.0.0
239+
- Speakeasy CLI 1.47.0 (2.39.0) https://github.com/speakeasy-api/speakeasy
240+
### Releases
241+
- [PyPI v0.14.0] https://pypi.org/project/airbyte-api/0.14.0 - .
242+
243+
## 2023-06-11 00:16:27
244+
### Changes
245+
Based on:
246+
- OpenAPI Doc 1.0.0
247+
- Speakeasy CLI 1.47.1 (2.39.2) https://github.com/speakeasy-api/speakeasy
248+
### Releases
249+
- [PyPI v0.14.1] https://pypi.org/project/airbyte-api/0.14.1 - .

USAGE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from airbyte.models import shared
55

66
s = airbyte.Airbyte(
77
security=shared.Security(
8-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
8+
bearer_auth="",
99
),
1010
)
1111

@@ -79,11 +79,12 @@ req = shared.ConnectionCreateRequest(
7979
namespace_format='${SOURCE_NAMESPACE}',
8080
non_breaking_schema_updates_behavior=shared.NonBreakingSchemaUpdatesBehaviorEnum.IGNORE,
8181
prefix='corporis',
82-
schedule=shared.ConnectionScheduleCreate(
82+
schedule=shared.ConnectionSchedule(
8383
cron_expression='explicabo',
8484
schedule_type=shared.ScheduleTypeEnum.CRON,
8585
),
8686
source_id='5955907a-ff1a-43a2-ba94-67739251aa52',
87+
status=shared.ConnectionStatusEnum.DEPRECATED,
8788
)
8889

8990
res = s.connections.create_connection(req)

0 commit comments

Comments
 (0)