Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ management:
docChecksum: c101e6356aa26bcdee80457c4dc64471
docVersion: 1.0.0
speakeasyVersion: internal
generationVersion: 2.237.2
releaseVersion: 0.48.0
configChecksum: daad51943f0f0e231f1e7b3b0c77f220
generationVersion: 2.253.0
releaseVersion: 0.48.1
configChecksum: 8694447405c5904c147dfb937af22c20
repoURL: https://github.com/airbytehq/airbyte-api-java-sdk.git
repoSubDirectory: .
published: true
Expand Down
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Developer Portal UI can also be used to help build your integration by showi
### Gradle

```groovy
implementation 'com.airbyte.api:public-api:0.48.0'
implementation 'com.airbyte.api:public-api:0.48.1'
```
<!-- End SDK Installation [installation] -->

Expand Down Expand Up @@ -54,8 +54,8 @@ public class Application {
.setSecurity(new Security(
){{
basicAuth = new SchemeBasicAuth(
"string",
"string"){{
"",
""){{
password = "<YOUR_PASSWORD_HERE>";
username = "<YOUR_USERNAME_HERE>";
}};
Expand All @@ -70,15 +70,7 @@ public class Application {
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
add(new StreamConfiguration(
"string"){{
cursorField = new String[]{{
add("string"),
}};
name = "string";
primaryKey = new String[][]{{
add(new String[]{{
add("string"),
}}),
}};
}}),
}};

Expand Down
22 changes: 21 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,4 +961,24 @@ Based on:
### Generated
- [java v0.48.0] .
### Releases
- [Maven Central v0.48.0] https://central.sonatype.com/artifact/com.airbyte/api/0.48.0 - .
- [Maven Central v0.48.0] https://central.sonatype.com/artifact/com.airbyte/api/0.48.0 - .

## 2024-01-26 00:13:31
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.152.1 (2.239.4) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.48.0] .
### Releases
- [Maven Central v0.48.0] https://central.sonatype.com/artifact/com.airbyte/api/0.48.0 - .

## 2024-02-13 00:13:14
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.178.0 (2.253.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.48.1] .
### Releases
- [Maven Central v0.48.1] https://central.sonatype.com/artifact/com.airbyte/api/0.48.1 - .
12 changes: 2 additions & 10 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public class Application {
.setSecurity(new Security(
){{
basicAuth = new SchemeBasicAuth(
"string",
"string"){{
"",
""){{
password = "<YOUR_PASSWORD_HERE>";
username = "<YOUR_USERNAME_HERE>";
}};
Expand All @@ -39,15 +39,7 @@ public class Application {
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
add(new StreamConfiguration(
"string"){{
cursorField = new String[]{{
add("string"),
}};
name = "string";
primaryKey = new String[][]{{
add(new String[]{{
add("string"),
}}),
}};
}}),
}};

Expand Down
12 changes: 6 additions & 6 deletions docs/models/operations/CancelJobResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `jobResponse` | [com.airbyte.api.models.shared.JobResponse](../../models/shared/JobResponse.md) | :heavy_minus_sign: | Cancel a Job. |
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse<byte[]>](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 |
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | |
| `jobResponse` | [com.airbyte.api.models.shared.JobResponse](../../models/shared/JobResponse.md) | :heavy_minus_sign: | Cancel a Job. | {"id":"18dccc91-0ab1-4f72-9ed7-0b8fc27c5826","status":"running","jobType":"sync","startTime":"2023-03-25T01:30:50Z","duration":"PT8H6M12S"} |
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | |
| `rawResponse` | [HttpResponse<byte[]>](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 | |
12 changes: 6 additions & 6 deletions docs/models/operations/CreateDestinationResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `destinationResponse` | [com.airbyte.api.models.shared.DestinationResponse](../../models/shared/DestinationResponse.md) | :heavy_minus_sign: | Successful operation |
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse<byte[]>](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 |
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation | |
| `destinationResponse` | [com.airbyte.api.models.shared.DestinationResponse](../../models/shared/DestinationResponse.md) | :heavy_minus_sign: | Successful operation | {"destinationId":"18dccc91-0ab1-4f72-9ed7-0b8fc27c5826","name":"Analytics Team Postgres","destinationType":"postgres","workspaceId":"871d9b60-11d1-44cb-8c92-c246d53bf87e"} |
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation | |
| `rawResponse` | [HttpResponse<byte[]>](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 | |
Loading