Skip to content

Commit e33eac1

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.508.0
1 parent ae27a67 commit e33eac1

File tree

629 files changed

+8861
-1675
lines changed

Some content is hidden

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

629 files changed

+8861
-1675
lines changed

.speakeasy/gen.lock

+605-244
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
speakeasyVersion: 1.453.10
1+
speakeasyVersion: 1.508.0
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:3712f551c1bc9d55089a54598938b61b271ddcc1a81583646d883bae9f085825
6-
sourceBlobDigest: sha256:fa5143179ee978611fb032f3948584f4cbf071857ff2ff6611fbac17e1b67eb9
5+
sourceRevisionDigest: sha256:25da928a6a4e29feecb54e6843bbcd259a102516df8a5e17892f38b3adde4b68
6+
sourceBlobDigest: sha256:e20a09a01624ada26b89de06a702adeb13ed7f50e1efd5685ddc05daf8eedc6b
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1730420397
9+
- speakeasy-sdk-regen-1733962750
1010
- 1.0.0
1111
targets:
1212
python-api:
1313
source: my-source
1414
sourceNamespace: my-source
15-
sourceRevisionDigest: sha256:3712f551c1bc9d55089a54598938b61b271ddcc1a81583646d883bae9f085825
16-
sourceBlobDigest: sha256:fa5143179ee978611fb032f3948584f4cbf071857ff2ff6611fbac17e1b67eb9
15+
sourceRevisionDigest: sha256:25da928a6a4e29feecb54e6843bbcd259a102516df8a5e17892f38b3adde4b68
16+
sourceBlobDigest: sha256:e20a09a01624ada26b89de06a702adeb13ed7f50e1efd5685ddc05daf8eedc6b
1717
codeSamplesNamespace: my-source-python-code-samples
18-
codeSamplesRevisionDigest: sha256:06fc180ad0f496ce01459cc965e47d9c73051b3339c4ffa34dd99997da5e2bf9
18+
codeSamplesRevisionDigest: sha256:cab8b0a01cbfbb9ec00787232925914ec2b00f86fea6a7385b36abf97848e1c9
1919
workflow:
2020
workflowVersion: 1.0.0
21-
speakeasyVersion: latest
21+
speakeasyVersion: 1.508.0
2222
sources:
2323
my-source:
2424
inputs:

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ res = s.connections.create_connection(request=models.ConnectionCreateRequest(
6666
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
6767
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
6868
name='Postgres-to-Bigquery',
69-
namespace_format='${SOURCE_NAMESPACE}',
7069
))
7170

7271
if res.connection_response is not None:
@@ -137,6 +136,14 @@ if res.connection_response is not None:
137136

138137
* [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
139138

139+
### [tags](docs/sdks/tags/README.md)
140+
141+
* [create_tag](docs/sdks/tags/README.md#create_tag) - Create a tag
142+
* [delete_tag](docs/sdks/tags/README.md#delete_tag) - Delete a tag
143+
* [get_tag](docs/sdks/tags/README.md#get_tag) - Get a tag
144+
* [list_tags](docs/sdks/tags/README.md#list_tags) - List all tags
145+
* [update_tag](docs/sdks/tags/README.md#update_tag) - Update a tag
146+
140147
### [users](docs/sdks/users/README.md)
141148

142149
* [list_users_within_an_organization](docs/sdks/users/README.md#list_users_within_an_organization) - List all users within an organization
@@ -200,7 +207,6 @@ try:
200207
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
201208
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
202209
name='Postgres-to-Bigquery',
203-
namespace_format='${SOURCE_NAMESPACE}',
204210
))
205211

206212
except errors.SDKError as e:
@@ -221,7 +227,7 @@ if res.connection_response is not None:
221227

222228
### Override Server URL Per-Client
223229

224-
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:
230+
The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
225231
```python
226232
import airbyte_api
227233
from airbyte_api import models
@@ -241,7 +247,6 @@ res = s.connections.create_connection(request=models.ConnectionCreateRequest(
241247
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
242248
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
243249
name='Postgres-to-Bigquery',
244-
namespace_format='${SOURCE_NAMESPACE}',
245250
))
246251

247252
if res.connection_response is not None:
@@ -303,7 +308,6 @@ res = s.connections.create_connection(request=models.ConnectionCreateRequest(
303308
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
304309
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
305310
name='Postgres-to-Bigquery',
306-
namespace_format='${SOURCE_NAMESPACE}',
307311
))
308312

309313
if res.connection_response is not None:

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -968,4 +968,14 @@ Based on:
968968
### Generated
969969
- [python v0.52.2] .
970970
### Releases
971-
- [PyPI v0.52.2] https://pypi.org/project/airbyte-api/0.52.2 - .
971+
- [PyPI v0.52.2] https://pypi.org/project/airbyte-api/0.52.2 - .
972+
973+
## 2025-04-01 00:22:03
974+
### Changes
975+
Based on:
976+
- OpenAPI Doc
977+
- Speakeasy CLI 1.508.0 (2.536.0) https://github.com/speakeasy-api/speakeasy
978+
### Generated
979+
- [python v0.53.0] .
980+
### Releases
981+
- [PyPI v0.53.0] https://pypi.org/project/airbyte-api/0.53.0 - .

USAGE.md

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ res = s.connections.create_connection(request=models.ConnectionCreateRequest(
1717
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
1818
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
1919
name='Postgres-to-Bigquery',
20-
namespace_format='${SOURCE_NAMESPACE}',
2120
))
2221

2322
if res.connection_response is not None:

docs/api/createtagresponse.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CreateTagResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
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_check_mark: | Raw HTTP response; suitable for custom response parsing | |
11+
| `tag_response` | [Optional[models.TagResponse]](../models/tagresponse.md) | :heavy_minus_sign: | Successful operation | {<br/>"tagId": "18dccc91-0ab1-4f72-9ed7-0b8fc27c5826",<br/>"name": "Analytics Team",<br/>"color": "FF5733",<br/>"workspaceId": "871d9b60-11d1-44cb-8c92-c246d53bf87e"<br/>} |

docs/api/deletetagrequest.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DeleteTagRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------ | ------------------ | ------------------ | ------------------ |
8+
| `tag_id` | *str* | :heavy_check_mark: | N/A |

docs/api/deletetagresponse.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# DeleteTagResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
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_check_mark: | Raw HTTP response; suitable for custom response parsing |

docs/api/gettagrequest.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# GetTagRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------ | ------------------ | ------------------ | ------------------ |
8+
| `tag_id` | *str* | :heavy_check_mark: | N/A |

docs/api/gettagresponse.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# GetTagResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
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_check_mark: | Raw HTTP response; suitable for custom response parsing | |
11+
| `tag_response` | [Optional[models.TagResponse]](../models/tagresponse.md) | :heavy_minus_sign: | Successful operation | {<br/>"tagId": "18dccc91-0ab1-4f72-9ed7-0b8fc27c5826",<br/>"name": "Analytics Team",<br/>"color": "FF5733",<br/>"workspaceId": "871d9b60-11d1-44cb-8c92-c246d53bf87e"<br/>} |

docs/api/listconnectionsrequest.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
| `include_deleted` | *Optional[bool]* | :heavy_minus_sign: | Include deleted connections in the returned results. |
99
| `limit` | *Optional[int]* | :heavy_minus_sign: | Set the limit on the number of Connections returned. The default is 20. |
1010
| `offset` | *Optional[int]* | :heavy_minus_sign: | Set the offset to start at when returning Connections. The default is 0 |
11+
| `tag_ids` | List[*str*] | :heavy_minus_sign: | The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections. |
1112
| `workspace_ids` | List[*str*] | :heavy_minus_sign: | The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces. |

docs/api/listtagsrequest.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ListTagsRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------ | ------------------ | ------------------ | ------------------ |
8+
| `workspace_ids` | List[*str*] | :heavy_minus_sign: | N/A |

0 commit comments

Comments
 (0)