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
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ management:
docChecksum: c101e6356aa26bcdee80457c4dc64471
docVersion: 1.0.0
speakeasyVersion: internal
generationVersion: 2.253.0
releaseVersion: 0.48.1
configChecksum: 8694447405c5904c147dfb937af22c20
generationVersion: 2.259.1
releaseVersion: 0.49.1
configChecksum: e3e7c21a61e9ffebaa16be28635d6db0
repoURL: https://github.com/airbytehq/airbyte-api-java-sdk.git
repoSubDirectory: .
published: true
features:
java:
core: 3.2.2
core: 3.5.1
globalSecurity: 2.81.2
globalServerURLs: 2.82.1
generatedFiles:
Expand All @@ -29,6 +29,7 @@ generatedFiles:
- gradle/wrapper/gradle-wrapper.properties
- gradlew
- gradlew.bat
- settings.gradle
- lib/build.gradle
- lib/src/main/java/com/airbyte/api/utils/DateTimeDeserializer.java
- lib/src/main/java/com/airbyte/api/utils/DateTimeSerializer.java
Expand All @@ -52,7 +53,6 @@ generatedFiles:
- lib/src/main/java/com/airbyte/api/utils/SpeakeasyMetadata.java
- lib/src/main/java/com/airbyte/api/utils/Types.java
- lib/src/main/java/com/airbyte/api/utils/Utils.java
- settings.gradle
- lib/src/main/java/com/airbyte/api/models/operations/CreateConnectionResponse.java
- lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionRequest.java
- lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionResponse.java
Expand Down
12 changes: 6 additions & 6 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.1'
implementation 'com.airbyte.api:public-api:0.49.1'
```
<!-- End SDK Installation [installation] -->

Expand Down Expand Up @@ -69,21 +69,21 @@ public class Application {
){{
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
add(new StreamConfiguration(
"string"){{
name = "string";
"<value>"){{
name = "<value>";
}}),
}};

}};
dataResidency = GeographyEnum.EU;
name = "string";
name = "<value>";
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
namespaceFormat = "${SOURCE_NAMESPACE}";
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
prefix = "string";
prefix = "<value>";
schedule = new ConnectionSchedule(
ScheduleTypeEnum.CRON){{
cronExpression = "string";
cronExpression = "<value>";

}};
status = ConnectionStatusEnum.DEPRECATED;
Expand Down
22 changes: 21 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -981,4 +981,24 @@ Based on:
### Generated
- [java v0.48.1] .
### Releases
- [Maven Central v0.48.1] https://central.sonatype.com/artifact/com.airbyte/api/0.48.1 - .
- [Maven Central v0.48.1] https://central.sonatype.com/artifact/com.airbyte/api/0.48.1 - .

## 2024-02-15 00:12:30
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.180.0 (2.258.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.49.0] .
### Releases
- [Maven Central v0.49.0] https://central.sonatype.com/artifact/com.airbyte/api/0.49.0 - .

## 2024-02-16 00:12:18
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.182.0 (2.259.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.49.1] .
### Releases
- [Maven Central v0.49.1] https://central.sonatype.com/artifact/com.airbyte/api/0.49.1 - .
10 changes: 5 additions & 5 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ public class Application {
){{
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
add(new StreamConfiguration(
"string"){{
name = "string";
"<value>"){{
name = "<value>";
}}),
}};

}};
dataResidency = GeographyEnum.EU;
name = "string";
name = "<value>";
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
namespaceFormat = "${SOURCE_NAMESPACE}";
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
prefix = "string";
prefix = "<value>";
schedule = new ConnectionSchedule(
ScheduleTypeEnum.CRON){{
cronExpression = "string";
cronExpression = "<value>";

}};
status = ConnectionStatusEnum.DEPRECATED;
Expand Down
26 changes: 13 additions & 13 deletions docs/sdks/connections/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ public class Application {
){{
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
add(new StreamConfiguration(
"string"){{
name = "string";
"<value>"){{
name = "<value>";
}}),
}};

}};
dataResidency = GeographyEnum.EU;
name = "string";
name = "<value>";
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
namespaceFormat = "${SOURCE_NAMESPACE}";
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
prefix = "string";
prefix = "<value>";
schedule = new ConnectionSchedule(
ScheduleTypeEnum.CRON){{
cronExpression = "string";
cronExpression = "<value>";

}};
status = ConnectionStatusEnum.DEPRECATED;
Expand Down Expand Up @@ -129,7 +129,7 @@ public class Application {
.build();

com.airbyte.api.models.operations.DeleteConnectionRequest req = new DeleteConnectionRequest(
"string");
"<value>");

com.airbyte.api.models.operations.DeleteConnectionResponse res = sdk.connections.deleteConnection(req);

Expand Down Expand Up @@ -185,7 +185,7 @@ public class Application {
.build();

com.airbyte.api.models.operations.GetConnectionRequest req = new GetConnectionRequest(
"string");
"<value>");

com.airbyte.api.models.operations.GetConnectionResponse res = sdk.connections.getConnection(req);

Expand Down Expand Up @@ -321,27 +321,27 @@ public class Application {
){{
streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{
add(new StreamConfiguration(
"string"){{
name = "string";
"<value>"){{
name = "<value>";
}}),
}};

}};
dataResidency = GeographyEnumNoDefault.AUTO;
name = "string";
name = "<value>";
namespaceDefinition = NamespaceDefinitionEnumNoDefault.SOURCE;
namespaceFormat = "${SOURCE_NAMESPACE}";
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnumNoDefault.PROPAGATE_FULLY;
prefix = "string";
prefix = "<value>";
schedule = new ConnectionSchedule(
ScheduleTypeEnum.CRON){{
cronExpression = "string";
cronExpression = "<value>";

}};
status = ConnectionStatusEnum.ACTIVE;

}},
"string");
"<value>");

com.airbyte.api.models.operations.PatchConnectionResponse res = sdk.connections.patchConnection(req);

Expand Down
20 changes: 10 additions & 10 deletions docs/sdks/destinations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public class Application {
.build();

com.airbyte.api.models.shared.DestinationCreateRequest req = new DestinationCreateRequest(
"string",
"string",
"<value>",
"<value>",
"8360860a-d46e-48e6-af62-08e5ba5019ef"){{
definitionId = "3492fc0e-ef56-45b0-b0c7-3d4dfc9aec3c";

Expand Down Expand Up @@ -101,7 +101,7 @@ public class Application {
.build();

com.airbyte.api.models.operations.DeleteDestinationRequest req = new DeleteDestinationRequest(
"string");
"<value>");

com.airbyte.api.models.operations.DeleteDestinationResponse res = sdk.destinations.deleteDestination(req);

Expand Down Expand Up @@ -157,7 +157,7 @@ public class Application {
.build();

com.airbyte.api.models.operations.GetDestinationRequest req = new GetDestinationRequest(
"string");
"<value>");

com.airbyte.api.models.operations.GetDestinationResponse res = sdk.destinations.getDestination(req);

Expand Down Expand Up @@ -278,11 +278,11 @@ public class Application {
.build();

com.airbyte.api.models.operations.PatchDestinationRequest req = new PatchDestinationRequest(
"string"){{
"<value>"){{
destinationPatchRequest = new DestinationPatchRequest(
){{
configuration = "string";
name = "string";
configuration = "<value>";
name = "<value>";

}};

Expand Down Expand Up @@ -343,10 +343,10 @@ public class Application {
.build();

com.airbyte.api.models.operations.PutDestinationRequest req = new PutDestinationRequest(
"string"){{
"<value>"){{
destinationPutRequest = new DestinationPutRequest(
"string",
"string");
"<value>",
"<value>");

}};

Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/jobs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class Application {
.build();

com.airbyte.api.models.shared.JobCreateRequest req = new JobCreateRequest(
"string",
"<value>",
JobTypeEnum.SYNC);

com.airbyte.api.models.operations.CreateJobResponse res = sdk.jobs.createJob(req);
Expand Down Expand Up @@ -212,13 +212,13 @@ public class Application {

com.airbyte.api.models.operations.ListJobsRequest req = new ListJobsRequest(
){{
connectionId = "string";
connectionId = "<value>";
createdAtEnd = OffsetDateTime.parse("2024-06-04T16:21:45.917Z");
createdAtStart = OffsetDateTime.parse("2023-04-03T04:39:28.005Z");
jobType = JobTypeEnum.SYNC;
limit = 955698;
offset = 624731;
orderBy = "string";
orderBy = "<value>";
status = JobStatusEnum.PENDING;
updatedAtEnd = OffsetDateTime.parse("2023-12-07T18:30:31.244Z");
updatedAtStart = OffsetDateTime.parse("2023-06-02T22:15:44.179Z");
Expand Down
24 changes: 12 additions & 12 deletions docs/sdks/sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public class Application {
.build();

com.airbyte.api.models.shared.SourceCreateRequest req = new SourceCreateRequest(
"string",
"string",
"<value>",
"<value>",
"a2cf0f31-f3dd-4c98-88c3-4bdfb109056a"){{
definitionId = "a6d6dedf-297b-4eb8-860e-3afe15240dda";
secretId = "string";
secretId = "<value>";

}};

Expand Down Expand Up @@ -103,7 +103,7 @@ public class Application {
.build();

com.airbyte.api.models.operations.DeleteSourceRequest req = new DeleteSourceRequest(
"string");
"<value>");

com.airbyte.api.models.operations.DeleteSourceResponse res = sdk.sources.deleteSource(req);

Expand Down Expand Up @@ -159,7 +159,7 @@ public class Application {
.build();

com.airbyte.api.models.operations.GetSourceRequest req = new GetSourceRequest(
"string");
"<value>");

com.airbyte.api.models.operations.GetSourceResponse res = sdk.sources.getSource(req);

Expand Down Expand Up @@ -221,7 +221,7 @@ public class Application {
.build();

com.airbyte.api.models.shared.InitiateOauthRequest req = new InitiateOauthRequest(
"string",
"<value>",
OAuthActorNames.GOOGLE_ADS,
"fd28130d-9919-4ffa-a67d-4e12eb099447"){{
oAuthInputConfiguration = new OAuthInputConfiguration(
Expand Down Expand Up @@ -348,12 +348,12 @@ public class Application {
.build();

com.airbyte.api.models.operations.PatchSourceRequest req = new PatchSourceRequest(
"string"){{
"<value>"){{
sourcePatchRequest = new SourcePatchRequest(
){{
configuration = "string";
configuration = "<value>";
name = "My source";
secretId = "string";
secretId = "<value>";
workspaceId = "30fc2511-c44f-479e-92c3-0df4fd46c0e4";

}};
Expand Down Expand Up @@ -415,10 +415,10 @@ public class Application {
.build();

com.airbyte.api.models.operations.PutSourceRequest req = new PutSourceRequest(
"string"){{
"<value>"){{
sourcePutRequest = new SourcePutRequest(
"string",
"string");
"<value>",
"<value>");

}};

Expand Down
4 changes: 2 additions & 2 deletions docs/sdks/streams/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public class Application {
.build();

com.airbyte.api.models.operations.GetStreamPropertiesRequest req = new GetStreamPropertiesRequest(
"string",
"string"){{
"<value>",
"<value>"){{
ignoreCache = false;

}};
Expand Down
Loading