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
13 changes: 10 additions & 3 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.15.1'
implementation 'com.airbyte.api:public-api:0.15.2'
```
<!-- End SDK Installation -->

Expand All @@ -33,7 +33,8 @@ package hello.world;
import com.airbyte.api.Airbyte;
import com.airbyte.api.models.operations.CreateConnectionResponse;
import com.airbyte.api.models.shared.ConnectionCreateRequest;
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
import com.airbyte.api.models.shared.ConnectionSchedule;
import com.airbyte.api.models.shared.ConnectionStatusEnum;
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
import com.airbyte.api.models.shared.GeographyEnum;
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
Expand Down Expand Up @@ -124,9 +125,10 @@ public class Application {
namespaceFormat = "${SOURCE_NAMESPACE}";
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
prefix = "tenetur";
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.MANUAL) {{
schedule = new ConnectionSchedule(ScheduleTypeEnum.MANUAL) {{
cronExpression = "id";
}};;
status = ConnectionStatusEnum.DEPRECATED;
}};

CreateConnectionResponse res = sdk.connections.createConnection(req);
Expand All @@ -152,13 +154,16 @@ public class Application {
* [deleteConnection](docs/connections/README.md#deleteconnection) - Delete a Connection
* [getConnection](docs/connections/README.md#getconnection) - Get Connection details
* [listConnections](docs/connections/README.md#listconnections) - List connections
* [patchConnection](docs/connections/README.md#patchconnection) - Update Connection details

### [destinations](docs/destinations/README.md)

* [createDestination](docs/destinations/README.md#createdestination) - Create a destination
* [deleteDestination](docs/destinations/README.md#deletedestination) - Delete a Destination
* [getDestination](docs/destinations/README.md#getdestination) - Get Destination details
* [listDestinations](docs/destinations/README.md#listdestinations) - List destinations
* [patchDestination](docs/destinations/README.md#patchdestination) - Update a Destination
* [putDestination](docs/destinations/README.md#putdestination) - Update a Destination and fully overwrite it

### [jobs](docs/jobs/README.md)

Expand All @@ -174,6 +179,8 @@ public class Application {
* [getSource](docs/sources/README.md#getsource) - Get Source details
* [initiateOAuth](docs/sources/README.md#initiateoauth) - Initiate OAuth for a source
* [listSources](docs/sources/README.md#listsources) - List sources
* [patchSource](docs/sources/README.md#patchsource) - Update a Source
* [putSource](docs/sources/README.md#putsource) - Update a Source and fully overwrite it

### [streams](docs/streams/README.md)

Expand Down
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,4 +359,12 @@ Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
### Releases
- [Maven Central v0.15.1] https://central.sonatype.com/artifact/com.airbyte/api/0.15.1 - .
- [Maven Central v0.15.1] https://central.sonatype.com/artifact/com.airbyte/api/0.15.1 - .

## 2023-06-07 07:13:41
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
### Releases
- [Maven Central v0.15.2] https://central.sonatype.com/artifact/com.airbyte/api/0.15.2 - .
6 changes: 4 additions & 2 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ package hello.world;
import com.airbyte.api.Airbyte;
import com.airbyte.api.models.operations.CreateConnectionResponse;
import com.airbyte.api.models.shared.ConnectionCreateRequest;
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
import com.airbyte.api.models.shared.ConnectionSchedule;
import com.airbyte.api.models.shared.ConnectionStatusEnum;
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
import com.airbyte.api.models.shared.GeographyEnum;
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
Expand Down Expand Up @@ -96,9 +97,10 @@ public class Application {
namespaceFormat = "${SOURCE_NAMESPACE}";
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
prefix = "tenetur";
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.MANUAL) {{
schedule = new ConnectionSchedule(ScheduleTypeEnum.MANUAL) {{
cronExpression = "id";
}};;
status = ConnectionStatusEnum.DEPRECATED;
}};

CreateConnectionResponse res = sdk.connections.createConnection(req);
Expand Down
Loading