Skip to content

Commit 5eefb65

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.44.2
1 parent 3e7d73c commit 5eefb65

File tree

79 files changed

+4391
-464
lines changed

Some content is hidden

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

79 files changed

+4391
-464
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ 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.15.1'
24+
implementation 'com.airbyte.api:public-api:0.15.2'
2525
```
2626
<!-- End SDK Installation -->
2727

@@ -33,7 +33,8 @@ package hello.world;
3333
import com.airbyte.api.Airbyte;
3434
import com.airbyte.api.models.operations.CreateConnectionResponse;
3535
import com.airbyte.api.models.shared.ConnectionCreateRequest;
36-
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
36+
import com.airbyte.api.models.shared.ConnectionSchedule;
37+
import com.airbyte.api.models.shared.ConnectionStatusEnum;
3738
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
3839
import com.airbyte.api.models.shared.GeographyEnum;
3940
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
@@ -124,9 +125,10 @@ public class Application {
124125
namespaceFormat = "${SOURCE_NAMESPACE}";
125126
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
126127
prefix = "tenetur";
127-
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.MANUAL) {{
128+
schedule = new ConnectionSchedule(ScheduleTypeEnum.MANUAL) {{
128129
cronExpression = "id";
129130
}};;
131+
status = ConnectionStatusEnum.DEPRECATED;
130132
}};
131133

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

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

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

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

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

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

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,4 +359,12 @@ Based on:
359359
- OpenAPI Doc 1.0.0
360360
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
361361
### Releases
362-
- [Maven Central v0.15.1] https://central.sonatype.com/artifact/com.airbyte/api/0.15.1 - .
362+
- [Maven Central v0.15.1] https://central.sonatype.com/artifact/com.airbyte/api/0.15.1 - .
363+
364+
## 2023-06-07 07:13:41
365+
### Changes
366+
Based on:
367+
- OpenAPI Doc 1.0.0
368+
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
369+
### Releases
370+
- [Maven Central v0.15.2] https://central.sonatype.com/artifact/com.airbyte/api/0.15.2 - .

USAGE.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ package hello.world;
55
import com.airbyte.api.Airbyte;
66
import com.airbyte.api.models.operations.CreateConnectionResponse;
77
import com.airbyte.api.models.shared.ConnectionCreateRequest;
8-
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
8+
import com.airbyte.api.models.shared.ConnectionSchedule;
9+
import com.airbyte.api.models.shared.ConnectionStatusEnum;
910
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
1011
import com.airbyte.api.models.shared.GeographyEnum;
1112
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
@@ -96,9 +97,10 @@ public class Application {
9697
namespaceFormat = "${SOURCE_NAMESPACE}";
9798
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
9899
prefix = "tenetur";
99-
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.MANUAL) {{
100+
schedule = new ConnectionSchedule(ScheduleTypeEnum.MANUAL) {{
100101
cronExpression = "id";
101102
}};;
103+
status = ConnectionStatusEnum.DEPRECATED;
102104
}};
103105

104106
CreateConnectionResponse res = sdk.connections.createConnection(req);

0 commit comments

Comments
 (0)