@@ -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;
3333import com.airbyte.api.Airbyte ;
3434import com.airbyte.api.models.operations.CreateConnectionResponse ;
3535import 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 ;
3738import com.airbyte.api.models.shared.ConnectionSyncModeEnum ;
3839import com.airbyte.api.models.shared.GeographyEnum ;
3940import 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
0 commit comments