Skip to content

Commit 0ba1960

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.91.0
1 parent 95a8c1f commit 0ba1960

File tree

70 files changed

+559
-297
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

+559
-297
lines changed

README.md

Lines changed: 26 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@ The Developer Portal UI can also be used to help build your integration by showi
2121
### Gradle
2222

2323
```groovy
24-
implementation 'com.airbyte.api:public-api:0.39.4'
24+
implementation 'com.airbyte.api:public-api:0.40.0'
2525
```
2626
<!-- End SDK Installation -->
2727

2828
## SDK Example Usage
2929
<!-- Start SDK Example Usage -->
30-
31-
3230
```java
3331
package hello.world;
3432

@@ -51,40 +49,40 @@ public class Application {
5149
try {
5250
Airbyte sdk = Airbyte.builder()
5351
.setSecurity(new Security() {{
54-
basicAuth = new SchemeBasicAuth("corrupti", "provident") {{
52+
basicAuth = new SchemeBasicAuth("ipsa", "reiciendis") {{
5553
password = "";
5654
username = "";
5755
}};
5856
}})
5957
.build();
6058

61-
com.airbyte.api.models.shared.ConnectionCreateRequest req = new ConnectionCreateRequest("bd9d8d69-a674-4e0f-867c-c8796ed151a0", "5dfc2ddf-7cc7-48ca-9ba9-28fc816742cb") {{
59+
com.airbyte.api.models.shared.ConnectionCreateRequest req = new ConnectionCreateRequest("aaa2352c-5955-4907-aff1-a3a2fa946773", "9251aa52-c3f5-4ad0-99da-1ffe78f097b0") {{
6260
configurations = new StreamConfigurations() {{
6361
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
64-
add(new StreamConfiguration("dolor") {{
62+
add(new StreamConfiguration("harum") {{
6563
cursorField = new String[]{{
66-
add("esse"),
64+
add("doloremque"),
6765
}};
68-
name = "Mrs. Miriam Collier";
66+
name = "Mrs. April Wuckert";
6967
primaryKey = new String[][]{{
7068
add(new String[]{{
71-
add("sed"),
69+
add("iusto"),
7270
}}),
7371
}};
74-
syncMode = ConnectionSyncModeEnum.INCREMENTAL_APPEND;
72+
syncMode = ConnectionSyncModeEnum.FULL_REFRESH_OVERWRITE;
7573
}}),
7674
}};
7775
}};;
78-
dataResidency = GeographyEnum.US;
79-
name = "May Turcotte";
76+
dataResidency = GeographyEnum.AUTO;
77+
name = "Mrs. Leslie VonRueden";
8078
namespaceDefinition = NamespaceDefinitionEnum.DESTINATION;
8179
namespaceFormat = "${SOURCE_NAMESPACE}";
8280
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.PROPAGATE_COLUMNS;
83-
prefix = "iure";
84-
schedule = new ConnectionSchedule(ScheduleTypeEnum.CRON) {{
85-
cronExpression = "quidem";
81+
prefix = "pariatur";
82+
schedule = new ConnectionSchedule(ScheduleTypeEnum.MANUAL) {{
83+
cronExpression = "praesentium";
8684
}};;
87-
status = ConnectionStatusEnum.ACTIVE;
85+
status = ConnectionStatusEnum.INACTIVE;
8886
}};
8987

9088
CreateConnectionResponse res = sdk.connections.createConnection(req);
@@ -152,6 +150,18 @@ public class Application {
152150
* [updateWorkspace](docs/sdks/workspaces/README.md#updateworkspace) - Update a workspace
153151
<!-- End SDK Available Operations -->
154152

153+
154+
155+
<!-- Start Dev Containers -->
156+
157+
158+
159+
<!-- End Dev Containers -->
160+
161+
<!-- Placeholder for Future Speakeasy SDK Sections -->
162+
163+
164+
155165
### Maturity
156166

157167
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
@@ -751,4 +751,14 @@ Based on:
751751
### Generated
752752
- [java v0.39.4] .
753753
### Releases
754-
- [Maven Central v0.39.4] https://central.sonatype.com/artifact/com.airbyte/api/0.39.4 - .
754+
- [Maven Central v0.39.4] https://central.sonatype.com/artifact/com.airbyte/api/0.39.4 - .
755+
756+
## 2023-09-26 00:12:20
757+
### Changes
758+
Based on:
759+
- OpenAPI Doc 1.0.0
760+
- Speakeasy CLI 1.91.0 (2.129.1) https://github.com/speakeasy-api/speakeasy
761+
### Generated
762+
- [java v0.40.0] .
763+
### Releases
764+
- [Maven Central v0.40.0] https://central.sonatype.com/artifact/com.airbyte/api/0.40.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-
| `contentType` | *String* | :heavy_check_mark: | N/A |
8+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `jobResponse` | [com.airbyte.api.models.shared.JobResponse](../../models/shared/JobResponse.md) | :heavy_minus_sign: | Cancel a Job. |
10-
| `statusCode` | *Integer* | :heavy_check_mark: | N/A |
11-
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | N/A |
10+
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :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
| `connectionResponse` | [com.airbyte.api.models.shared.ConnectionResponse](../../models/shared/ConnectionResponse.md) | :heavy_minus_sign: | Successful operation |
9-
| `contentType` | *String* | :heavy_check_mark: | N/A |
10-
| `statusCode` | *Integer* | :heavy_check_mark: | N/A |
11-
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | N/A |
9+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
10+
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :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-
| `contentType` | *String* | :heavy_check_mark: | N/A |
8+
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `destinationResponse` | [com.airbyte.api.models.shared.DestinationResponse](../../models/shared/DestinationResponse.md) | :heavy_minus_sign: | Successful operation |
10-
| `statusCode` | *Integer* | :heavy_check_mark: | N/A |
11-
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | N/A |
10+
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

0 commit comments

Comments
 (0)