Skip to content

Commit 307c272

Browse files
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.291.0 (#81)
Co-authored-by: speakeasybot <[email protected]>
1 parent 498dd6f commit 307c272

File tree

115 files changed

+7192
-11776
lines changed

Some content is hidden

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

115 files changed

+7192
-11776
lines changed

.speakeasy/gen.lock

+339-271
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
speakeasyVersion: 1.289.0
1+
speakeasyVersion: 1.291.0
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:e2938740e6abed08a354142314cefb69fcd49c3745c84c348f66eb69f0073d9d
6-
sourceBlobDigest: sha256:3434f26a0b6a2b11edcca0817eac6ab6c26bef5c026c80e6125073a6e719933b
5+
sourceRevisionDigest: sha256:f30dd93c1451c32647ed528bfe75a845852a4626ef075f25fef425ef5e6418c7
6+
sourceBlobDigest: sha256:a156e20e873eee6682ba598d7a347db8c8bb1a8d0a6116b1bb5162d6531df49b
77
tags:
88
- latest
99
- main
1010
targets:
1111
airbyte-api:
1212
source: my-source
1313
sourceNamespace: my-source
14-
sourceRevisionDigest: sha256:e2938740e6abed08a354142314cefb69fcd49c3745c84c348f66eb69f0073d9d
15-
sourceBlobDigest: sha256:3434f26a0b6a2b11edcca0817eac6ab6c26bef5c026c80e6125073a6e719933b
14+
sourceRevisionDigest: sha256:f30dd93c1451c32647ed528bfe75a845852a4626ef075f25fef425ef5e6418c7
15+
sourceBlobDigest: sha256:a156e20e873eee6682ba598d7a347db8c8bb1a8d0a6116b1bb5162d6531df49b
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0

README.md

+13-89
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ The samples below show how a published SDK artifact is used:
2424

2525
Gradle:
2626
```groovy
27-
implementation 'com.airbyte.api:public-api:1.1.0'
27+
implementation 'com.airbyte.api:public-api:1.2.0'
2828
```
2929

3030
Maven:
3131
```xml
3232
<dependency>
3333
<groupId>com.airbyte.api</groupId>
3434
<artifactId>public-api</artifactId>
35-
<version>1.1.0</version>
35+
<version>1.2.0</version>
3636
</dependency>
3737
```
3838

@@ -90,7 +90,7 @@ public class Application {
9090
.namespaceFormat("${SOURCE_NAMESPACE}")
9191
.build();
9292

93-
CreateConnectionResponse res = sdk.publicConnections().createConnection()
93+
CreateConnectionResponse res = sdk.connections().createConnection()
9494
.request(req)
9595
.call();
9696

@@ -112,47 +112,6 @@ public class Application {
112112
<!-- Start Available Resources and Operations [operations] -->
113113
## Available Resources and Operations
114114

115-
### [publicConnections()](docs/sdks/publicconnections/README.md)
116-
117-
* [createConnection](docs/sdks/publicconnections/README.md#createconnection) - Create a connection
118-
* [deleteConnection](docs/sdks/publicconnections/README.md#deleteconnection) - Delete a Connection
119-
* [getConnection](docs/sdks/publicconnections/README.md#getconnection) - Get Connection details
120-
* [listConnections](docs/sdks/publicconnections/README.md#listconnections) - List connections
121-
* [patchConnection](docs/sdks/publicconnections/README.md#patchconnection) - Update Connection details
122-
123-
### [public_()](docs/sdks/public/README.md)
124-
125-
* [cancelJob](docs/sdks/public/README.md#canceljob) - Cancel a running Job
126-
* [createConnection](docs/sdks/public/README.md#createconnection) - Create a connection
127-
* [createDestination](docs/sdks/public/README.md#createdestination) - Create a destination
128-
* [createJob](docs/sdks/public/README.md#createjob) - Trigger a sync or reset job of a connection
129-
* [createOrUpdateWorkspaceOAuthCredentials](docs/sdks/public/README.md#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type.
130-
* [createPermission](docs/sdks/public/README.md#createpermission) - Create a permission
131-
* [createSource](docs/sdks/public/README.md#createsource) - Create a source
132-
* [createWorkspace](docs/sdks/public/README.md#createworkspace) - Create a workspace
133-
* [deleteConnection](docs/sdks/public/README.md#deleteconnection) - Delete a Connection
134-
* [deleteDestination](docs/sdks/public/README.md#deletedestination) - Delete a Destination
135-
* [deleteSource](docs/sdks/public/README.md#deletesource) - Delete a Source
136-
* [deleteWorkspace](docs/sdks/public/README.md#deleteworkspace) - Delete a Workspace
137-
* [getConnection](docs/sdks/public/README.md#getconnection) - Get Connection details
138-
* [getDestination](docs/sdks/public/README.md#getdestination) - Get Destination details
139-
* [getJob](docs/sdks/public/README.md#getjob) - Get Job status and details
140-
* [getSource](docs/sdks/public/README.md#getsource) - Get Source details
141-
* [getStreamProperties](docs/sdks/public/README.md#getstreamproperties) - Get stream properties
142-
* [getWorkspace](docs/sdks/public/README.md#getworkspace) - Get Workspace details
143-
* [initiateOAuth](docs/sdks/public/README.md#initiateoauth) - Initiate OAuth for a source
144-
* [listConnections](docs/sdks/public/README.md#listconnections) - List connections
145-
* [listDestinations](docs/sdks/public/README.md#listdestinations) - List destinations
146-
* [listJobs](docs/sdks/public/README.md#listjobs) - List Jobs by sync type
147-
* [listSources](docs/sdks/public/README.md#listsources) - List sources
148-
* [listWorkspaces](docs/sdks/public/README.md#listworkspaces) - List workspaces
149-
* [patchConnection](docs/sdks/public/README.md#patchconnection) - Update Connection details
150-
* [patchDestination](docs/sdks/public/README.md#patchdestination) - Update a Destination
151-
* [patchSource](docs/sdks/public/README.md#patchsource) - Update a Source
152-
* [putDestination](docs/sdks/public/README.md#putdestination) - Update a Destination and fully overwrite it
153-
* [putSource](docs/sdks/public/README.md#putsource) - Update a Source and fully overwrite it
154-
* [updateWorkspace](docs/sdks/public/README.md#updateworkspace) - Update a workspace
155-
156115
### [connections()](docs/sdks/connections/README.md)
157116

158117
* [createConnection](docs/sdks/connections/README.md#createconnection) - Create a connection
@@ -161,15 +120,6 @@ public class Application {
161120
* [listConnections](docs/sdks/connections/README.md#listconnections) - List connections
162121
* [patchConnection](docs/sdks/connections/README.md#patchconnection) - Update Connection details
163122

164-
### [publicDestinations()](docs/sdks/publicdestinations/README.md)
165-
166-
* [createDestination](docs/sdks/publicdestinations/README.md#createdestination) - Create a destination
167-
* [deleteDestination](docs/sdks/publicdestinations/README.md#deletedestination) - Delete a Destination
168-
* [getDestination](docs/sdks/publicdestinations/README.md#getdestination) - Get Destination details
169-
* [listDestinations](docs/sdks/publicdestinations/README.md#listdestinations) - List destinations
170-
* [patchDestination](docs/sdks/publicdestinations/README.md#patchdestination) - Update a Destination
171-
* [putDestination](docs/sdks/publicdestinations/README.md#putdestination) - Update a Destination and fully overwrite it
172-
173123
### [destinations()](docs/sdks/destinations/README.md)
174124

175125
* [createDestination](docs/sdks/destinations/README.md#createdestination) - Create a destination
@@ -179,12 +129,9 @@ public class Application {
179129
* [patchDestination](docs/sdks/destinations/README.md#patchdestination) - Update a Destination
180130
* [putDestination](docs/sdks/destinations/README.md#putdestination) - Update a Destination and fully overwrite it
181131

182-
### [publicJobs()](docs/sdks/publicjobs/README.md)
132+
### [health()](docs/sdks/health/README.md)
183133

184-
* [cancelJob](docs/sdks/publicjobs/README.md#canceljob) - Cancel a running Job
185-
* [createJob](docs/sdks/publicjobs/README.md#createjob) - Trigger a sync or reset job of a connection
186-
* [getJob](docs/sdks/publicjobs/README.md#getjob) - Get Job status and details
187-
* [listJobs](docs/sdks/publicjobs/README.md#listjobs) - List Jobs by sync type
134+
* [getHealthCheck](docs/sdks/health/README.md#gethealthcheck) - Health Check
188135

189136
### [jobs()](docs/sdks/jobs/README.md)
190137

@@ -193,23 +140,13 @@ public class Application {
193140
* [getJob](docs/sdks/jobs/README.md#getjob) - Get Job status and details
194141
* [listJobs](docs/sdks/jobs/README.md#listjobs) - List Jobs by sync type
195142

196-
### [publicPermissions()](docs/sdks/publicpermissions/README.md)
197-
198-
* [createPermission](docs/sdks/publicpermissions/README.md#createpermission) - Create a permission
199-
200143
### [permissions()](docs/sdks/permissions/README.md)
201144

202145
* [createPermission](docs/sdks/permissions/README.md#createpermission) - Create a permission
203-
204-
### [publicSources()](docs/sdks/publicsources/README.md)
205-
206-
* [createSource](docs/sdks/publicsources/README.md#createsource) - Create a source
207-
* [deleteSource](docs/sdks/publicsources/README.md#deletesource) - Delete a Source
208-
* [getSource](docs/sdks/publicsources/README.md#getsource) - Get Source details
209-
* [initiateOAuth](docs/sdks/publicsources/README.md#initiateoauth) - Initiate OAuth for a source
210-
* [listSources](docs/sdks/publicsources/README.md#listsources) - List sources
211-
* [patchSource](docs/sdks/publicsources/README.md#patchsource) - Update a Source
212-
* [putSource](docs/sdks/publicsources/README.md#putsource) - Update a Source and fully overwrite it
146+
* [deletePermission](docs/sdks/permissions/README.md#deletepermission) - Delete a Permission
147+
* [getPermission](docs/sdks/permissions/README.md#getpermission) - Get Permission details
148+
* [listPermissions](docs/sdks/permissions/README.md#listpermissions) - List Permissions by user id
149+
* [updatePermission](docs/sdks/permissions/README.md#updatepermission) - Update a permission
213150

214151
### [sources()](docs/sdks/sources/README.md)
215152

@@ -221,23 +158,10 @@ public class Application {
221158
* [patchSource](docs/sdks/sources/README.md#patchsource) - Update a Source
222159
* [putSource](docs/sdks/sources/README.md#putsource) - Update a Source and fully overwrite it
223160

224-
### [publicStreams()](docs/sdks/publicstreams/README.md)
225-
226-
* [getStreamProperties](docs/sdks/publicstreams/README.md#getstreamproperties) - Get stream properties
227-
228161
### [streams()](docs/sdks/streams/README.md)
229162

230163
* [getStreamProperties](docs/sdks/streams/README.md#getstreamproperties) - Get stream properties
231164

232-
### [publicWorkspaces()](docs/sdks/publicworkspaces/README.md)
233-
234-
* [createOrUpdateWorkspaceOAuthCredentials](docs/sdks/publicworkspaces/README.md#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type.
235-
* [createWorkspace](docs/sdks/publicworkspaces/README.md#createworkspace) - Create a workspace
236-
* [deleteWorkspace](docs/sdks/publicworkspaces/README.md#deleteworkspace) - Delete a Workspace
237-
* [getWorkspace](docs/sdks/publicworkspaces/README.md#getworkspace) - Get Workspace details
238-
* [listWorkspaces](docs/sdks/publicworkspaces/README.md#listworkspaces) - List workspaces
239-
* [updateWorkspace](docs/sdks/publicworkspaces/README.md#updateworkspace) - Update a workspace
240-
241165
### [workspaces()](docs/sdks/workspaces/README.md)
242166

243167
* [createOrUpdateWorkspaceOAuthCredentials](docs/sdks/workspaces/README.md#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type.
@@ -298,7 +222,7 @@ public class Application {
298222
.namespaceFormat("${SOURCE_NAMESPACE}")
299223
.build();
300224

301-
CreateConnectionResponse res = sdk.publicConnections().createConnection()
225+
CreateConnectionResponse res = sdk.connections().createConnection()
302226
.request(req)
303227
.call();
304228

@@ -355,7 +279,7 @@ public class Application {
355279
.namespaceFormat("${SOURCE_NAMESPACE}")
356280
.build();
357281

358-
CreateConnectionResponse res = sdk.publicConnections().createConnection()
282+
CreateConnectionResponse res = sdk.connections().createConnection()
359283
.request(req)
360284
.call();
361285

@@ -419,7 +343,7 @@ public class Application {
419343
.namespaceFormat("${SOURCE_NAMESPACE}")
420344
.build();
421345

422-
CreateConnectionResponse res = sdk.publicConnections().createConnection()
346+
CreateConnectionResponse res = sdk.connections().createConnection()
423347
.request(req)
424348
.call();
425349

@@ -486,7 +410,7 @@ public class Application {
486410
.namespaceFormat("${SOURCE_NAMESPACE}")
487411
.build();
488412

489-
CreateConnectionResponse res = sdk.publicConnections().createConnection()
413+
CreateConnectionResponse res = sdk.connections().createConnection()
490414
.request(req)
491415
.call();
492416

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1031,4 +1031,14 @@ Based on:
10311031
### Generated
10321032
- [java v1.1.0] .
10331033
### Releases
1034-
- [Maven Central v1.1.0] https://central.sonatype.com/artifact/com.airbyte/api/1.1.0 - .
1034+
- [Maven Central v1.1.0] https://central.sonatype.com/artifact/com.airbyte/api/1.1.0 - .
1035+
1036+
## 2024-05-15 22:25:49
1037+
### Changes
1038+
Based on:
1039+
- OpenAPI Doc
1040+
- Speakeasy CLI 1.291.0 (2.332.4) https://github.com/speakeasy-api/speakeasy
1041+
### Generated
1042+
- [java v1.2.0] .
1043+
### Releases
1044+
- [Maven Central v1.2.0] https://central.sonatype.com/artifact/com.airbyte/api/1.2.0 - .

USAGE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Application {
3333
.namespaceFormat("${SOURCE_NAMESPACE}")
3434
.build();
3535

36-
CreateConnectionResponse res = sdk.publicConnections().createConnection()
36+
CreateConnectionResponse res = sdk.connections().createConnection()
3737
.request(req)
3838
.call();
3939

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ publishing {
6565
maven(MavenPublication) {
6666
groupId = 'com.airbyte'
6767
artifactId = 'api'
68-
version = '1.1.0'
68+
version = '1.2.0'
6969

7070
from components.java
7171

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DeletePermissionRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------ | ------------------ | ------------------ | ------------------ |
8+
| `permissionId` | *String* | :heavy_check_mark: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# DeletePermissionResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
8+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `rawResponse` | [HttpResponse<InputStream>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# GetHealthCheckResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
8+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
9+
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `rawResponse` | [HttpResponse<InputStream>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# GetPermissionRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------ | ------------------ | ------------------ | ------------------ |
8+
| `permissionId` | *String* | :heavy_check_mark: | N/A |

0 commit comments

Comments
 (0)