Skip to content

Commit ae1c220

Browse files
speakeasybotJonsSpaghetti
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.289.0
1 parent 6dfca76 commit ae1c220

File tree

2,052 files changed

+40474
-11596
lines changed

Some content is hidden

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

2,052 files changed

+40474
-11596
lines changed

.speakeasy/gen.lock

+417-279
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
speakeasyVersion: 1.289.0
2+
sources:
3+
my-source:
4+
sourceNamespace: my-source
5+
sourceRevisionDigest: sha256:e2938740e6abed08a354142314cefb69fcd49c3745c84c348f66eb69f0073d9d
6+
sourceBlobDigest: sha256:3434f26a0b6a2b11edcca0817eac6ab6c26bef5c026c80e6125073a6e719933b
7+
tags:
8+
- latest
9+
- main
10+
targets:
11+
airbyte-api:
12+
source: my-source
13+
sourceNamespace: my-source
14+
sourceRevisionDigest: sha256:e2938740e6abed08a354142314cefb69fcd49c3745c84c348f66eb69f0073d9d
15+
sourceBlobDigest: sha256:3434f26a0b6a2b11edcca0817eac6ab6c26bef5c026c80e6125073a6e719933b
16+
outLocation: /github/workspace/repo
17+
workflow:
18+
workflowVersion: 1.0.0
19+
speakeasyVersion: latest
20+
sources:
21+
my-source:
22+
inputs:
23+
- location: https://raw.githubusercontent.com/airbytehq/airbyte-api-python-sdk/main/airbyte-api.openapi.yaml
24+
registry:
25+
location: registry.speakeasyapi.dev/airbyte/airbyte-prod/my-source
26+
targets:
27+
airbyte-api:
28+
target: java
29+
source: my-source
30+
publish:
31+
java:
32+
ossrhUsername: $OSSRH_USERNAME
33+
ossrhPassword: $OSSRH_PASSWORD
34+
gpgSecretKey: $JAVA_GPG_SECRET_KEY
35+
gpgPassPhrase: $JAVA_GPG_PASSPHRASE
36+
useSonatypeLegacy: true

.speakeasy/workflow.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
workflowVersion: 1.0.0
2+
speakeasyVersion: latest
23
sources:
34
my-source:
45
inputs:
56
- location: https://raw.githubusercontent.com/airbytehq/airbyte-api-python-sdk/main/airbyte-api.openapi.yaml
7+
registry:
8+
location: registry.speakeasyapi.dev/airbyte/airbyte-prod/my-source
69
targets:
710
airbyte-api:
811
target: java

README.md

+120-151
Large diffs are not rendered by default.

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1021,4 +1021,14 @@ Based on:
10211021
### Generated
10221022
- [java v0.49.3] .
10231023
### Releases
1024-
- [Maven Central v0.49.3] https://central.sonatype.com/artifact/com.airbyte/api/0.49.3 - .
1024+
- [Maven Central v0.49.3] https://central.sonatype.com/artifact/com.airbyte/api/0.49.3 - .
1025+
1026+
## 2024-05-15 00:13:25
1027+
### Changes
1028+
Based on:
1029+
- OpenAPI Doc
1030+
- Speakeasy CLI 1.289.0 (2.331.0) https://github.com/speakeasy-api/speakeasy
1031+
### Generated
1032+
- [java v1.1.0] .
1033+
### Releases
1034+
- [Maven Central v1.1.0] https://central.sonatype.com/artifact/com.airbyte/api/1.1.0 - .

USAGE.md

+5-29
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,19 @@ package hello.world;
44

55
import com.airbyte.api.Airbyte;
66
import com.airbyte.api.models.operations.*;
7-
import com.airbyte.api.models.operations.CreateConnectionResponse;
87
import com.airbyte.api.models.shared.*;
9-
import com.airbyte.api.models.shared.ConnectionCreateRequest;
10-
import com.airbyte.api.models.shared.ConnectionSchedule;
11-
import com.airbyte.api.models.shared.ConnectionStatusEnum;
12-
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
13-
import com.airbyte.api.models.shared.GeographyEnum;
14-
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
15-
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnum;
16-
import com.airbyte.api.models.shared.ScheduleTypeEnum;
178
import com.airbyte.api.models.shared.Security;
18-
import com.airbyte.api.models.shared.StreamConfiguration;
19-
import com.airbyte.api.models.shared.StreamConfigurations;
209
import java.math.BigDecimal;
2110
import java.math.BigInteger;
2211
import java.time.LocalDate;
2312
import java.time.OffsetDateTime;
2413
import java.util.Optional;
14+
import org.openapitools.jackson.nullable.JsonNullable;
2515
import static java.util.Map.entry;
2616

2717
public class Application {
2818

29-
public static void main(String[] args) {
19+
public static void main(String[] args) throws Exception {
3020
try {
3121
Airbyte sdk = Airbyte.builder()
3222
.security(Security.builder()
@@ -40,26 +30,10 @@ public class Application {
4030
ConnectionCreateRequest req = ConnectionCreateRequest.builder()
4131
.destinationId("c669dd1e-3620-483e-afc8-55914e0a570f")
4232
.sourceId("6dd427d8-3a55-4584-b835-842325b6c7b3")
43-
.configurations(StreamConfigurations.builder()
44-
.streams(java.util.List.of(
45-
StreamConfiguration.builder()
46-
.name("<value>")
47-
.build()))
48-
.build())
49-
.dataResidency(GeographyEnum.EU)
50-
.name("<value>")
51-
.namespaceDefinition(NamespaceDefinitionEnum.CUSTOM_FORMAT)
5233
.namespaceFormat("${SOURCE_NAMESPACE}")
53-
.nonBreakingSchemaUpdatesBehavior(NonBreakingSchemaUpdatesBehaviorEnum.IGNORE)
54-
.prefix("<value>")
55-
.schedule(ConnectionSchedule.builder()
56-
.scheduleType(ScheduleTypeEnum.CRON)
57-
.cronExpression("<value>")
58-
.build())
59-
.status(ConnectionStatusEnum.DEPRECATED)
6034
.build();
6135

62-
CreateConnectionResponse res = sdk.connections().createConnection()
36+
CreateConnectionResponse res = sdk.publicConnections().createConnection()
6337
.request(req)
6438
.call();
6539

@@ -68,8 +42,10 @@ public class Application {
6842
}
6943
} catch (com.airbyte.api.models.errors.SDKError e) {
7044
// handle exception
45+
throw e;
7146
} catch (Exception e) {
7247
// handle exception
48+
throw e;
7349
}
7450
}
7551
}

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
}
88

99
compileJava.options.encoding = "UTF-8"
10+
compileJava.options.compilerArgs += '-Xlint:unchecked'
1011
compileTestJava.options.encoding = "UTF-8"
1112

1213
repositories {
@@ -64,7 +65,7 @@ publishing {
6465
maven(MavenPublication) {
6566
groupId = 'com.airbyte'
6667
artifactId = 'api'
67-
version = '1.0.0'
68+
version = '1.1.0'
6869

6970
from components.java
7071

@@ -108,13 +109,12 @@ if (!project.hasProperty('skip.signing')) {
108109
}
109110

110111
dependencies {
111-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.2'
112-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.16.2'
113-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.16.2'
112+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
113+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.0'
114+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.0'
114115
implementation 'org.openapitools:jackson-databind-nullable:0.2.6'
115116
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
116117
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
117-
implementation 'com.jayway.jsonpath:json-path:2.9.0'
118118
implementation 'commons-io:commons-io:2.15.1'
119119
}
120120

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CreatePermissionResponse
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+
| `permissionResponse` | [Optional<? extends com.airbyte.api.models.shared.PermissionResponse>](../../models/shared/PermissionResponse.md) | :heavy_minus_sign: | Successful operation |
10+
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
11+
| `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 |

docs/models/operations/GetStreamPropertiesRequest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
8-
| `destinationId` | *String* | :heavy_check_mark: | ID of the destination |
8+
| `destinationId` | *Optional<? extends String>* | :heavy_minus_sign: | ID of the destination |
99
| `ignoreCache` | *Optional<? extends Boolean>* | :heavy_minus_sign: | If true pull the latest schema from the source, else pull from cache (default false) |
1010
| `sourceId` | *String* | :heavy_check_mark: | ID of the source |

docs/models/operations/GetStreamPropertiesResponse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
1010
| `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 |
11-
| `streamPropertiesResponse` | [Optional<? extends com.airbyte.api.models.shared.StreamPropertiesResponse>](../../models/shared/StreamPropertiesResponse.md) | :heavy_minus_sign: | Get the available streams properties for a source/destination pair. |
11+
| `streamPropertiesResponse` | List<[com.airbyte.api.models.shared.StreamProperties](../../models/shared/StreamProperties.md)> | :heavy_minus_sign: | Get the available streams properties for a source/destination pair. |

0 commit comments

Comments
 (0)