diff --git a/README.md b/README.md index e253e08c6..6ec5c0ff8 100755 --- a/README.md +++ b/README.md @@ -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.2.1' +implementation 'com.airbyte.api:public-api:0.5.0' ``` @@ -31,16 +31,16 @@ implementation 'com.airbyte.api:public-api:0.2.1' package hello.world; import com.airbyte.api.Airbyte; -import com.airbyte.api.models.shared.Security; import com.airbyte.api.models.operations.CreateConnectionResponse; -import com.airbyte.api.models.shared.ConnectionCreateRequestNamespaceDefinitionEnum; import com.airbyte.api.models.shared.ConnectionCreateRequest; +import com.airbyte.api.models.shared.ConnectionCreateRequestNamespaceDefinitionEnum; import com.airbyte.api.models.shared.ConnectionScheduleCreate; -import com.airbyte.api.models.shared.ScheduleTypeEnumEnum; +import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum; import com.airbyte.api.models.shared.GeographyEnumEnum; -import com.airbyte.api.models.shared.StreamConfigurations; +import com.airbyte.api.models.shared.ScheduleTypeEnumEnum; +import com.airbyte.api.models.shared.Security; import com.airbyte.api.models.shared.StreamConfiguration; -import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum; +import com.airbyte.api.models.shared.StreamConfigurations; public class Application { public static void main(String[] args) { @@ -52,21 +52,91 @@ public class Application { .build(); com.airbyte.api.models.shared.ConnectionCreateRequest req = new ConnectionCreateRequest("9bd9d8d6-9a67-44e0-b467-cc8796ed151a", "05dfc2dd-f7cc-478c-a1ba-928fc816742c") {{ - dataResidency = "us"; + configurations = new StreamConfigurations() {{ + streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{ + add(new StreamConfiguration("saepe") {{ + cursorField = new String[]{{ + add("ipsum"), + add("excepturi"), + }}; + name = "Dorothy Hane"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("natus"), + }}), + add(new String[]{{ + add("hic"), + add("saepe"), + }}), + add(new String[]{{ + add("in"), + add("corporis"), + add("iste"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND; + }}), + add(new StreamConfiguration("excepturi") {{ + cursorField = new String[]{{ + add("architecto"), + add("ipsa"), + add("reiciendis"), + }}; + name = "Shaun Osinski"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("nobis"), + }}), + add(new String[]{{ + add("omnis"), + add("nemo"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND; + }}), + add(new StreamConfiguration("quia") {{ + cursorField = new String[]{{ + add("iure"), + }}; + name = "Miss Aubrey Williamson"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("repellat"), + }}), + add(new String[]{{ + add("occaecati"), + add("numquam"), + add("commodi"), + }}), + add(new String[]{{ + add("molestiae"), + add("velit"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.INCREMENTAL_APPEND; + }}), + }}; + }};; + dataResidency = GeographyEnumEnum.US; name = "Kayla O'Kon"; - namespaceDefinition = "custom_format"; + namespaceDefinition = ConnectionCreateRequestNamespaceDefinitionEnum.CUSTOM_FORMAT; namespaceFormat = "${SOURCE_NAMESPACE}"; prefix = "sequi"; + schedule = new ConnectionScheduleCreate(ScheduleTypeEnumEnum.CRON) {{ + cronExpression = "ipsam"; + }};; }}; CreateConnectionResponse res = sdk.connections.createConnection(req); - if (res.connectionResponse.isPresent()) { + if (res.connectionResponse != null) { // handle response } } catch (Exception e) { // handle exception } + } +} ``` @@ -74,45 +144,45 @@ public class Application { ## Available Resources and Operations -### connections +### [connections](docs/connections/README.md) -* `createConnection` - Create a connection -* `deleteConnection` - Delete a Connection -* `getConnection` - Get Connection details -* `listConnections` - List connections +* [createConnection](docs/connections/README.md#createconnection) - Create a connection +* [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 -### destinations +### [destinations](docs/destinations/README.md) -* `createDestination` - Create a destination -* `deleteDestination` - Delete a Destination -* `getDestination` - Get Destination details -* `listDestinations` - List destinations +* [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 -### jobs +### [jobs](docs/jobs/README.md) -* `cancelJob` - Cancel a running Job -* `createJob` - Trigger a sync or reset job of a connection -* `getJob` - Get Job status and details -* `listJobs` - List Jobs by sync type +* [cancelJob](docs/jobs/README.md#canceljob) - Cancel a running Job +* [createJob](docs/jobs/README.md#createjob) - Trigger a sync or reset job of a connection +* [getJob](docs/jobs/README.md#getjob) - Get Job status and details +* [listJobs](docs/jobs/README.md#listjobs) - List Jobs by sync type -### sources +### [sources](docs/sources/README.md) -* `createSource` - Create a source -* `deleteSource` - Delete a Source -* `getSource` - Get Source details -* `initiateOAuth` - Initiate OAuth for a source -* `listSources` - List sources +* [createSource](docs/sources/README.md#createsource) - Create a source +* [deleteSource](docs/sources/README.md#deletesource) - Delete a Source +* [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 -### streams +### [streams](docs/streams/README.md) -* `getStreamProperties` - Get stream properties +* [getStreamProperties](docs/streams/README.md#getstreamproperties) - Get stream properties -### workspaces +### [workspaces](docs/workspaces/README.md) -* `createOrUpdateWorkspaceOAuthCredentials` - Create OAuth override credentials for a workspace and source type. -* `createWorkspace` - Create a workspace -* `getWorkspace` - Get Workspace details -* `listWorkspaces` - List workspaces +* [createOrUpdateWorkspaceOAuthCredentials](docs/workspaces/README.md#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type. +* [createWorkspace](docs/workspaces/README.md#createworkspace) - Create a workspace +* [getWorkspace](docs/workspaces/README.md#getworkspace) - Get Workspace details +* [listWorkspaces](docs/workspaces/README.md#listworkspaces) - List workspaces ### Maturity diff --git a/RELEASES.md b/RELEASES.md index 8f9886a75..1710bef1f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -159,4 +159,28 @@ Based on: - OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download - Speakeasy CLI 1.22.2 (2.20.1) https://github.com/speakeasy-api/speakeasy ### Releases -- [Maven Central v0.2.1] https://central.sonatype.com/artifact/com.airbyte/api/0.2.1 - . \ No newline at end of file +- [Maven Central v0.2.1] https://central.sonatype.com/artifact/com.airbyte/api/0.2.1 - . + +## 2023-04-26 00:12:10 +### Changes +Based on: +- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download +- Speakeasy CLI 1.23.1 (2.21.1) https://github.com/speakeasy-api/speakeasy +### Releases +- [Maven Central v0.3.0] https://central.sonatype.com/artifact/com.airbyte/api/0.3.0 - . + +## 2023-04-27 00:12:26 +### Changes +Based on: +- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download +- Speakeasy CLI 1.25.1 (2.22.0) https://github.com/speakeasy-api/speakeasy +### Releases +- [Maven Central v0.4.0] https://central.sonatype.com/artifact/com.airbyte/api/0.4.0 - . + +## 2023-04-28 00:12:55 +### Changes +Based on: +- OpenAPI Doc 1.0.0 https://prod.speakeasyapi.dev/v1/apis/public-api/version/v0.1.0/schema/download +- Speakeasy CLI 1.26.2 (2.23.2) https://github.com/speakeasy-api/speakeasy +### Releases +- [Maven Central v0.5.0] https://central.sonatype.com/artifact/com.airbyte/api/0.5.0 - . \ No newline at end of file diff --git a/USAGE.md b/USAGE.md index a3b18c77b..a2be2a48b 100755 --- a/USAGE.md +++ b/USAGE.md @@ -3,16 +3,16 @@ package hello.world; import com.airbyte.api.Airbyte; -import com.airbyte.api.models.shared.Security; import com.airbyte.api.models.operations.CreateConnectionResponse; -import com.airbyte.api.models.shared.ConnectionCreateRequestNamespaceDefinitionEnum; import com.airbyte.api.models.shared.ConnectionCreateRequest; +import com.airbyte.api.models.shared.ConnectionCreateRequestNamespaceDefinitionEnum; import com.airbyte.api.models.shared.ConnectionScheduleCreate; -import com.airbyte.api.models.shared.ScheduleTypeEnumEnum; +import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum; import com.airbyte.api.models.shared.GeographyEnumEnum; -import com.airbyte.api.models.shared.StreamConfigurations; +import com.airbyte.api.models.shared.ScheduleTypeEnumEnum; +import com.airbyte.api.models.shared.Security; import com.airbyte.api.models.shared.StreamConfiguration; -import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum; +import com.airbyte.api.models.shared.StreamConfigurations; public class Application { public static void main(String[] args) { @@ -24,20 +24,90 @@ public class Application { .build(); com.airbyte.api.models.shared.ConnectionCreateRequest req = new ConnectionCreateRequest("9bd9d8d6-9a67-44e0-b467-cc8796ed151a", "05dfc2dd-f7cc-478c-a1ba-928fc816742c") {{ - dataResidency = "us"; + configurations = new StreamConfigurations() {{ + streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{ + add(new StreamConfiguration("saepe") {{ + cursorField = new String[]{{ + add("ipsum"), + add("excepturi"), + }}; + name = "Dorothy Hane"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("natus"), + }}), + add(new String[]{{ + add("hic"), + add("saepe"), + }}), + add(new String[]{{ + add("in"), + add("corporis"), + add("iste"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND; + }}), + add(new StreamConfiguration("excepturi") {{ + cursorField = new String[]{{ + add("architecto"), + add("ipsa"), + add("reiciendis"), + }}; + name = "Shaun Osinski"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("nobis"), + }}), + add(new String[]{{ + add("omnis"), + add("nemo"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND; + }}), + add(new StreamConfiguration("quia") {{ + cursorField = new String[]{{ + add("iure"), + }}; + name = "Miss Aubrey Williamson"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("repellat"), + }}), + add(new String[]{{ + add("occaecati"), + add("numquam"), + add("commodi"), + }}), + add(new String[]{{ + add("molestiae"), + add("velit"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.INCREMENTAL_APPEND; + }}), + }}; + }};; + dataResidency = GeographyEnumEnum.US; name = "Kayla O'Kon"; - namespaceDefinition = "custom_format"; + namespaceDefinition = ConnectionCreateRequestNamespaceDefinitionEnum.CUSTOM_FORMAT; namespaceFormat = "${SOURCE_NAMESPACE}"; prefix = "sequi"; + schedule = new ConnectionScheduleCreate(ScheduleTypeEnumEnum.CRON) {{ + cronExpression = "ipsam"; + }};; }}; CreateConnectionResponse res = sdk.connections.createConnection(req); - if (res.connectionResponse.isPresent()) { + if (res.connectionResponse != null) { // handle response } } catch (Exception e) { // handle exception } + } +} ``` \ No newline at end of file diff --git a/docs/airbyte/README.md b/docs/airbyte/README.md new file mode 100755 index 000000000..a73d6ad36 --- /dev/null +++ b/docs/airbyte/README.md @@ -0,0 +1,4 @@ +# Airbyte SDK + +### Available Operations + diff --git a/docs/connections/README.md b/docs/connections/README.md new file mode 100755 index 000000000..8b4f85aa1 --- /dev/null +++ b/docs/connections/README.md @@ -0,0 +1,202 @@ +# connections + +### Available Operations + +* [createConnection](#createconnection) - Create a connection +* [deleteConnection](#deleteconnection) - Delete a Connection +* [getConnection](#getconnection) - Get Connection details +* [listConnections](#listconnections) - List connections + +## createConnection + +Create a connection + +### Example Usage + +```java +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.ConnectionCreateRequestNamespaceDefinitionEnum; +import com.airbyte.api.models.shared.ConnectionScheduleCreate; +import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum; +import com.airbyte.api.models.shared.GeographyEnumEnum; +import com.airbyte.api.models.shared.ScheduleTypeEnumEnum; +import com.airbyte.api.models.shared.Security; +import com.airbyte.api.models.shared.StreamConfiguration; +import com.airbyte.api.models.shared.StreamConfigurations; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("id") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + com.airbyte.api.models.shared.ConnectionCreateRequest req = new ConnectionCreateRequest("d019da1f-fe78-4f09-bb00-74f15471b5e6", "e13b99d4-88e1-4e91-a450-ad2abd442698") {{ + configurations = new StreamConfigurations() {{ + streams = new com.airbyte.api.models.shared.StreamConfiguration[]{{ + add(new StreamConfiguration("aliquid") {{ + cursorField = new String[]{{ + add("assumenda"), + }}; + name = "Linda Corkery"; + primaryKey = new String[][]{{ + add(new String[]{{ + add("tempore"), + add("labore"), + add("delectus"), + }}), + add(new String[]{{ + add("non"), + add("eligendi"), + }}), + }}; + syncMode = ConnectionSyncModeEnumEnum.INCREMENTAL_APPEND; + }}), + }}; + }};; + dataResidency = GeographyEnumEnum.US; + name = "Perry Nikolaus"; + namespaceDefinition = ConnectionCreateRequestNamespaceDefinitionEnum.CUSTOM_FORMAT; + namespaceFormat = "${SOURCE_NAMESPACE}"; + prefix = "dolorum"; + schedule = new ConnectionScheduleCreate(ScheduleTypeEnumEnum.MANUAL) {{ + cronExpression = "in"; + }};; + }}; + + CreateConnectionResponse res = sdk.connections.createConnection(req); + + if (res.connectionResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## deleteConnection + +Delete a Connection + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.DeleteConnectionRequest; +import com.airbyte.api.models.operations.DeleteConnectionResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("illum") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + DeleteConnectionRequest req = new DeleteConnectionRequest("maiores"); + + DeleteConnectionResponse res = sdk.connections.deleteConnection(req); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## getConnection + +Get Connection details + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.GetConnectionRequest; +import com.airbyte.api.models.operations.GetConnectionResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("rerum") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + GetConnectionRequest req = new GetConnectionRequest("dicta"); + + GetConnectionResponse res = sdk.connections.getConnection(req); + + if (res.connectionResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## listConnections + +List connections + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.ListConnectionsRequest; +import com.airbyte.api.models.operations.ListConnectionsResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("magnam") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + ListConnectionsRequest req = new ListConnectionsRequest() {{ + includeDeleted = false; + limit = 767024; + offset = 813798; + workspaceIds = new String[]{{ + add("6ae395ef-b9ba-488f-ba66-997074ba4469"), + add("b6e21419-5989-40af-a563-e2516fe4c8b7"), + }}; + }}; + + ListConnectionsResponse res = sdk.connections.listConnections(req); + + if (res.connectionsResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` diff --git a/docs/destinations/README.md b/docs/destinations/README.md new file mode 100755 index 000000000..4da9723ca --- /dev/null +++ b/docs/destinations/README.md @@ -0,0 +1,505 @@ +# destinations + +### Available Operations + +* [createDestination](#createdestination) - Create a destination +* [deleteDestination](#deletedestination) - Delete a Destination +* [getDestination](#getdestination) - Get Destination details +* [listDestinations](#listdestinations) - List destinations + +## createDestination + +Creates a destination given a name, workspace id, and a json blob containing the configuration for the source. + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.CreateDestinationResponse; +import com.airbyte.api.models.shared.DestinationAmazonSqs; +import com.airbyte.api.models.shared.DestinationAmazonSqsAWSRegionEnum; +import com.airbyte.api.models.shared.DestinationAmazonSqsAmazonSqsEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalake; +import com.airbyte.api.models.shared.DestinationAwsDatalakeAwsDatalakeEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeChooseHowToPartitionDataEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeCredentialsIAMRole; +import com.airbyte.api.models.shared.DestinationAwsDatalakeCredentialsIAMRoleCredentialsTitleEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeCredentialsIAMUser; +import com.airbyte.api.models.shared.DestinationAwsDatalakeCredentialsIAMUserCredentialsTitleEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON; +import com.airbyte.api.models.shared.DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSONCompressionCodecOptionalEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSONFormatTypeWildcardEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeFormatParquetColumnarStorage; +import com.airbyte.api.models.shared.DestinationAwsDatalakeFormatParquetColumnarStorageCompressionCodecOptionalEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeFormatParquetColumnarStorageFormatTypeWildcardEnum; +import com.airbyte.api.models.shared.DestinationAwsDatalakeS3BucketRegionEnum; +import com.airbyte.api.models.shared.DestinationAzureBlobStorage; +import com.airbyte.api.models.shared.DestinationAzureBlobStorageAzureBlobStorageEnum; +import com.airbyte.api.models.shared.DestinationAzureBlobStorageFormatCSVCommaSeparatedValues; +import com.airbyte.api.models.shared.DestinationAzureBlobStorageFormatCSVCommaSeparatedValuesFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationAzureBlobStorageFormatCSVCommaSeparatedValuesNormalizationFlatteningEnum; +import com.airbyte.api.models.shared.DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON; +import com.airbyte.api.models.shared.DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationBigquery; +import com.airbyte.api.models.shared.DestinationBigqueryBigqueryEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDatasetLocationEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalized; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedBigqueryDenormalizedEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedDatasetLocationEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodGCSStaging; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodGCSStagingGCSTmpFilesAfterwardProcessingEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodGCSStagingMethodEnum; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodStandardInserts; +import com.airbyte.api.models.shared.DestinationBigqueryDenormalizedLoadingMethodStandardInsertsMethodEnum; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodGCSStaging; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodGCSStagingGCSTmpFilesAfterwardProcessingEnum; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodGCSStagingMethodEnum; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodStandardInserts; +import com.airbyte.api.models.shared.DestinationBigqueryLoadingMethodStandardInsertsMethodEnum; +import com.airbyte.api.models.shared.DestinationBigqueryTransformationQueryRunTypeEnum; +import com.airbyte.api.models.shared.DestinationCassandra; +import com.airbyte.api.models.shared.DestinationCassandraCassandraEnum; +import com.airbyte.api.models.shared.DestinationClickhouse; +import com.airbyte.api.models.shared.DestinationClickhouseClickhouseEnum; +import com.airbyte.api.models.shared.DestinationClickhouseTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationClickhouseTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationClickhouseTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationClickhouseTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationClickhouseTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationClickhouseTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationConvex; +import com.airbyte.api.models.shared.DestinationConvexConvexEnum; +import com.airbyte.api.models.shared.DestinationCreateRequest; +import com.airbyte.api.models.shared.DestinationDatabend; +import com.airbyte.api.models.shared.DestinationDatabendDatabendEnum; +import com.airbyte.api.models.shared.DestinationDatabricks; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceAmazonS3; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceAmazonS3DataSourceTypeEnum; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceAmazonS3S3BucketRegionEnum; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceAzureBlobStorage; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceAzureBlobStorageDataSourceTypeEnum; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceRecommendedManagedTables; +import com.airbyte.api.models.shared.DestinationDatabricksDataSourceRecommendedManagedTablesDataSourceTypeEnum; +import com.airbyte.api.models.shared.DestinationDatabricksDatabricksEnum; +import com.airbyte.api.models.shared.DestinationDynamodb; +import com.airbyte.api.models.shared.DestinationDynamodbDynamoDBRegionEnum; +import com.airbyte.api.models.shared.DestinationDynamodbDynamodbEnum; +import com.airbyte.api.models.shared.DestinationElasticsearch; +import com.airbyte.api.models.shared.DestinationElasticsearchAuthenticationMethodApiKeySecret; +import com.airbyte.api.models.shared.DestinationElasticsearchAuthenticationMethodApiKeySecretMethodEnum; +import com.airbyte.api.models.shared.DestinationElasticsearchAuthenticationMethodUsernamePassword; +import com.airbyte.api.models.shared.DestinationElasticsearchAuthenticationMethodUsernamePasswordMethodEnum; +import com.airbyte.api.models.shared.DestinationElasticsearchElasticsearchEnum; +import com.airbyte.api.models.shared.DestinationFirebolt; +import com.airbyte.api.models.shared.DestinationFireboltFireboltEnum; +import com.airbyte.api.models.shared.DestinationFireboltLoadingMethodExternalTableViaS3; +import com.airbyte.api.models.shared.DestinationFireboltLoadingMethodExternalTableViaS3MethodEnum; +import com.airbyte.api.models.shared.DestinationFireboltLoadingMethodSQLInserts; +import com.airbyte.api.models.shared.DestinationFireboltLoadingMethodSQLInsertsMethodEnum; +import com.airbyte.api.models.shared.DestinationFirestore; +import com.airbyte.api.models.shared.DestinationFirestoreFirestoreEnum; +import com.airbyte.api.models.shared.DestinationGCSGCSBucketRegionEnum; +import com.airbyte.api.models.shared.DestinationGcs; +import com.airbyte.api.models.shared.DestinationGcsCredentialHMACKey; +import com.airbyte.api.models.shared.DestinationGcsCredentialHMACKeyCredentialTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvro; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2CodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecDeflateCodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompressionCodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecSnappyCodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecXz; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecXzCodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroCompressionCodecZstandardCodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatAvroApacheAvroFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValues; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIPCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompressionCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValuesFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatCSVCommaSeparatedValuesNormalizationEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatJSONLinesNewlineDelimitedJSON; +import com.airbyte.api.models.shared.DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP; +import com.airbyte.api.models.shared.DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIPCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression; +import com.airbyte.api.models.shared.DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompressionCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatParquetColumnarStorage; +import com.airbyte.api.models.shared.DestinationGcsFormatParquetColumnarStorageCompressionCodecEnum; +import com.airbyte.api.models.shared.DestinationGcsFormatParquetColumnarStorageFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationGcsGcsEnum; +import com.airbyte.api.models.shared.DestinationGoogleSheets; +import com.airbyte.api.models.shared.DestinationGoogleSheetsAuthenticationViaGoogleOAuth; +import com.airbyte.api.models.shared.DestinationGoogleSheetsGoogleSheetsEnum; +import com.airbyte.api.models.shared.DestinationKeen; +import com.airbyte.api.models.shared.DestinationKeenKeenEnum; +import com.airbyte.api.models.shared.DestinationKinesis; +import com.airbyte.api.models.shared.DestinationKinesisKinesisEnum; +import com.airbyte.api.models.shared.DestinationMariadbColumnstore; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreMariadbColumnstoreEnum; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMeilisearch; +import com.airbyte.api.models.shared.DestinationMeilisearchMeilisearchEnum; +import com.airbyte.api.models.shared.DestinationMongodb; +import com.airbyte.api.models.shared.DestinationMongodbAuthTypeLoginPassword; +import com.airbyte.api.models.shared.DestinationMongodbAuthTypeLoginPasswordAuthorizationEnum; +import com.airbyte.api.models.shared.DestinationMongodbAuthTypeNone; +import com.airbyte.api.models.shared.DestinationMongodbAuthTypeNoneAuthorizationEnum; +import com.airbyte.api.models.shared.DestinationMongodbInstanceTypeMongoDBAtlas; +import com.airbyte.api.models.shared.DestinationMongodbInstanceTypeMongoDBAtlasInstanceEnum; +import com.airbyte.api.models.shared.DestinationMongodbInstanceTypeReplicaSet; +import com.airbyte.api.models.shared.DestinationMongodbInstanceTypeReplicaSetInstanceEnum; +import com.airbyte.api.models.shared.DestinationMongodbInstanceTypeStandaloneMongoDbInstance; +import com.airbyte.api.models.shared.DestinationMongodbInstanceTypeStandaloneMongoDbInstanceInstanceEnum; +import com.airbyte.api.models.shared.DestinationMongodbMongodbEnum; +import com.airbyte.api.models.shared.DestinationMongodbTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationMongodbTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMongodbTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationMongodbTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMongodbTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationMongodbTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMssql; +import com.airbyte.api.models.shared.DestinationMssqlMssqlEnum; +import com.airbyte.api.models.shared.DestinationMssqlSslMethodEncryptedTrustServerCertificate; +import com.airbyte.api.models.shared.DestinationMssqlSslMethodEncryptedTrustServerCertificateSslMethodEnum; +import com.airbyte.api.models.shared.DestinationMssqlSslMethodEncryptedVerifyCertificate; +import com.airbyte.api.models.shared.DestinationMssqlSslMethodEncryptedVerifyCertificateSslMethodEnum; +import com.airbyte.api.models.shared.DestinationMssqlTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationMssqlTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMssqlTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationMssqlTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMssqlTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationMssqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMysql; +import com.airbyte.api.models.shared.DestinationMysqlMysqlEnum; +import com.airbyte.api.models.shared.DestinationMysqlTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationMysqlTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMysqlTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationMysqlTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationMysqlTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationMysqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationOracle; +import com.airbyte.api.models.shared.DestinationOracleOracleEnum; +import com.airbyte.api.models.shared.DestinationOracleTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationOracleTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationOracleTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationOracleTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationOracleTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationOracleTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationPostgres; +import com.airbyte.api.models.shared.DestinationPostgresPostgresEnum; +import com.airbyte.api.models.shared.DestinationPostgresSslModeAllow; +import com.airbyte.api.models.shared.DestinationPostgresSslModeAllowModeEnum; +import com.airbyte.api.models.shared.DestinationPostgresSslModeDisable; +import com.airbyte.api.models.shared.DestinationPostgresSslModeDisableModeEnum; +import com.airbyte.api.models.shared.DestinationPostgresSslModePrefer; +import com.airbyte.api.models.shared.DestinationPostgresSslModePreferModeEnum; +import com.airbyte.api.models.shared.DestinationPostgresSslModeRequire; +import com.airbyte.api.models.shared.DestinationPostgresSslModeRequireModeEnum; +import com.airbyte.api.models.shared.DestinationPostgresSslModeVerifyCa; +import com.airbyte.api.models.shared.DestinationPostgresSslModeVerifyCaModeEnum; +import com.airbyte.api.models.shared.DestinationPostgresSslModeVerifyFull; +import com.airbyte.api.models.shared.DestinationPostgresSslModeVerifyFullModeEnum; +import com.airbyte.api.models.shared.DestinationPostgresTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationPostgresTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationPostgresTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationPostgresTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationPostgresTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationPostgresTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationPubsub; +import com.airbyte.api.models.shared.DestinationPubsubPubsubEnum; +import com.airbyte.api.models.shared.DestinationPulsar; +import com.airbyte.api.models.shared.DestinationPulsarCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationPulsarPulsarEnum; +import com.airbyte.api.models.shared.DestinationPulsarTopicTypeEnum; +import com.airbyte.api.models.shared.DestinationRabbitmq; +import com.airbyte.api.models.shared.DestinationRabbitmqRabbitmqEnum; +import com.airbyte.api.models.shared.DestinationRedis; +import com.airbyte.api.models.shared.DestinationRedisCacheTypeEnum; +import com.airbyte.api.models.shared.DestinationRedisRedisEnum; +import com.airbyte.api.models.shared.DestinationRedisSslModeDisable; +import com.airbyte.api.models.shared.DestinationRedisSslModeDisableModeEnum; +import com.airbyte.api.models.shared.DestinationRedisSslModeVerifyFull; +import com.airbyte.api.models.shared.DestinationRedisSslModeVerifyFullModeEnum; +import com.airbyte.api.models.shared.DestinationRedisTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationRedisTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationRedisTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationRedisTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationRedisTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationRedisTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationRedshift; +import com.airbyte.api.models.shared.DestinationRedshiftRedshiftEnum; +import com.airbyte.api.models.shared.DestinationRedshiftTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.DestinationRedshiftTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationRedshiftTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.DestinationRedshiftTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationRedshiftTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.DestinationRedshiftTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3Staging; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryption; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryptionEncryptionTypeEnum; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryptionEncryptionTypeEnum; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3StagingMethodEnum; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodS3StagingS3BucketRegionEnum; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodStandard; +import com.airbyte.api.models.shared.DestinationRedshiftUploadingMethodStandardMethodEnum; +import com.airbyte.api.models.shared.DestinationRockset; +import com.airbyte.api.models.shared.DestinationRocksetRocksetEnum; +import com.airbyte.api.models.shared.DestinationS3; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvro; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecBzip2; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecBzip2CodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecDeflate; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecDeflateCodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecNoCompressionCodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecSnappy; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecSnappyCodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecXz; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecXzCodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecZstandard; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroCompressionCodecZstandardCodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatAvroApacheAvroFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValues; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIPCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompressionCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValuesFlatteningEnum; +import com.airbyte.api.models.shared.DestinationS3FormatCSVCommaSeparatedValuesFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSON; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIPCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompressionCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSONFlatteningEnum; +import com.airbyte.api.models.shared.DestinationS3FormatJSONLinesNewlineDelimitedJSONFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationS3FormatParquetColumnarStorage; +import com.airbyte.api.models.shared.DestinationS3FormatParquetColumnarStorageCompressionCodecEnum; +import com.airbyte.api.models.shared.DestinationS3FormatParquetColumnarStorageFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationS3Glue; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIPCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompressionCompressionTypeEnum; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONFlatteningEnum; +import com.airbyte.api.models.shared.DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum; +import com.airbyte.api.models.shared.DestinationS3GlueS3BucketRegionEnum; +import com.airbyte.api.models.shared.DestinationS3GlueS3GlueEnum; +import com.airbyte.api.models.shared.DestinationS3GlueSerializationLibraryEnum; +import com.airbyte.api.models.shared.DestinationS3S3BucketRegionEnum; +import com.airbyte.api.models.shared.DestinationS3S3Enum; +import com.airbyte.api.models.shared.DestinationScylla; +import com.airbyte.api.models.shared.DestinationScyllaScyllaEnum; +import com.airbyte.api.models.shared.DestinationSftpJson; +import com.airbyte.api.models.shared.DestinationSftpJsonSftpJsonEnum; +import com.airbyte.api.models.shared.DestinationSnowflake; +import com.airbyte.api.models.shared.DestinationSnowflakeCredentialsKeyPairAuthentication; +import com.airbyte.api.models.shared.DestinationSnowflakeCredentialsKeyPairAuthenticationAuthTypeEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeCredentialsOAuth20; +import com.airbyte.api.models.shared.DestinationSnowflakeCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeCredentialsUsernameAndPassword; +import com.airbyte.api.models.shared.DestinationSnowflakeCredentialsUsernameAndPasswordAuthTypeEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3Staging; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryption; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryptionEncryptionTypeEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryptionEncryptionTypeEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3StagingMethodEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAWSS3StagingS3BucketRegionEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAzureBlobStorageStaging; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodAzureBlobStorageStagingMethodEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodGoogleCloudStorageStagingMethodEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodRecommendedInternalStaging; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodRecommendedInternalStagingMethodEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodSelectAnotherOption; +import com.airbyte.api.models.shared.DestinationSnowflakeLoadingMethodSelectAnotherOptionMethodEnum; +import com.airbyte.api.models.shared.DestinationSnowflakeSnowflakeEnum; +import com.airbyte.api.models.shared.DestinationTypesense; +import com.airbyte.api.models.shared.DestinationTypesenseTypesenseEnum; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("architecto") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + com.airbyte.api.models.shared.DestinationCreateRequest req = new DestinationCreateRequest( new DestinationBigquery("excepturi", DestinationBigqueryDatasetLocationEnum.ASIA_NORTHEAST2, DestinationBigqueryBigqueryEnum.BIGQUERY, "ea") {{ + bigQueryClientBufferSizeMb = 919483L; + credentialsJson = "ullam"; + datasetId = "expedita"; + datasetLocation = DestinationBigqueryDatasetLocationEnum.EUROPE_WEST2; + destinationType = DestinationBigqueryBigqueryEnum.BIGQUERY; + loadingMethod = new DestinationBigqueryLoadingMethodGCSStaging( new DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey(DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum.HMAC_KEY, "sunt", "quo") {{ + credentialType = DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum.HMAC_KEY; + hmacKeyAccessId = "natus"; + hmacKeySecret = "magni"; + }}, "illum", "pariatur", DestinationBigqueryLoadingMethodGCSStagingMethodEnum.GCS_STAGING) {{ + credential = new DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey(DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum.HMAC_KEY, "saepe", "pariatur") {{ + credentialType = DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum.HMAC_KEY; + hmacKeyAccessId = "quibusdam"; + hmacKeySecret = "sed"; + }}; + gcsBucketName = "accusantium"; + gcsBucketPath = "consequuntur"; + keepFilesInGcsBucket = DestinationBigqueryLoadingMethodGCSStagingGCSTmpFilesAfterwardProcessingEnum.KEEP_ALL_TMP_FILES_IN_GCS; + method = DestinationBigqueryLoadingMethodGCSStagingMethodEnum.GCS_STAGING; + }}; + projectId = "maxime"; + transformationPriority = DestinationBigqueryTransformationQueryRunTypeEnum.INTERACTIVE; + }}, "accusantium", "1fb576b0-d5f0-4d30-85fb-b2587053202c"); + + CreateDestinationResponse res = sdk.destinations.createDestination(req); + + if (res.destinationResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## deleteDestination + +Delete a Destination + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.DeleteDestinationRequest; +import com.airbyte.api.models.operations.DeleteDestinationResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("quam") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + DeleteDestinationRequest req = new DeleteDestinationRequest("dolor"); + + DeleteDestinationResponse res = sdk.destinations.deleteDestination(req); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## getDestination + +Get Destination details + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.GetDestinationRequest; +import com.airbyte.api.models.operations.GetDestinationResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("vero") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + GetDestinationRequest req = new GetDestinationRequest("nostrum"); + + GetDestinationResponse res = sdk.destinations.getDestination(req); + + if (res.destinationResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## listDestinations + +List destinations + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.ListDestinationsRequest; +import com.airbyte.api.models.operations.ListDestinationsResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("hic") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + ListDestinationsRequest req = new ListDestinationsRequest() {{ + includeDeleted = false; + limit = 928082; + offset = 608253; + workspaceIds = new String[]{{ + add("90c28909-b3fe-449a-8d9c-bf48633323f9"), + add("b77f3a41-0067-44eb-b692-80d1ba77a89e"), + add("bf737ae4-203c-4e5e-aa95-d8a0d446ce2a"), + }}; + }}; + + ListDestinationsResponse res = sdk.destinations.listDestinations(req); + + if (res.destinationsResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` diff --git a/docs/jobs/README.md b/docs/jobs/README.md new file mode 100755 index 000000000..fcb260abf --- /dev/null +++ b/docs/jobs/README.md @@ -0,0 +1,162 @@ +# jobs + +### Available Operations + +* [cancelJob](#canceljob) - Cancel a running Job +* [createJob](#createjob) - Trigger a sync or reset job of a connection +* [getJob](#getjob) - Get Job status and details +* [listJobs](#listjobs) - List Jobs by sync type + +## cancelJob + +Cancel a running Job + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.CancelJobRequest; +import com.airbyte.api.models.operations.CancelJobResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("a") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + CancelJobRequest req = new CancelJobRequest(456130L); + + CancelJobResponse res = sdk.jobs.cancelJob(req); + + if (res.jobResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## createJob + +Trigger a sync or reset job of a connection + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.CreateJobResponse; +import com.airbyte.api.models.shared.JobCreateRequest; +import com.airbyte.api.models.shared.JobTypeEnumEnum; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("harum") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + com.airbyte.api.models.shared.JobCreateRequest req = new JobCreateRequest("iusto", JobTypeEnumEnum.SYNC); + + CreateJobResponse res = sdk.jobs.createJob(req); + + if (res.jobResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## getJob + +Get Job status and details + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.GetJobRequest; +import com.airbyte.api.models.operations.GetJobResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("quisquam") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + GetJobRequest req = new GetJobRequest(947371L); + + GetJobResponse res = sdk.jobs.getJob(req); + + if (res.jobResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## listJobs + +List Jobs by sync type + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.ListJobsRequest; +import com.airbyte.api.models.operations.ListJobsResponse; +import com.airbyte.api.models.shared.JobTypeEnumEnum; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("amet") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + ListJobsRequest req = new ListJobsRequest("tempore") {{ + jobType = JobTypeEnumEnum.RESET; + limit = 253941; + offset = 313692; + }}; + + ListJobsResponse res = sdk.jobs.listJobs(req); + + if (res.jobsResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` diff --git a/docs/sources/README.md b/docs/sources/README.md new file mode 100755 index 000000000..3cade97f3 --- /dev/null +++ b/docs/sources/README.md @@ -0,0 +1,906 @@ +# sources + +### Available Operations + +* [createSource](#createsource) - Create a source +* [deleteSource](#deletesource) - Delete a Source +* [getSource](#getsource) - Get Source details +* [initiateOAuth](#initiateoauth) - Initiate OAuth for a source +* [listSources](#listsources) - List sources + +## createSource + +Creates a source given a name, workspace id, and a json blob containing the configuration for the source. + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.CreateSourceResponse; +import com.airbyte.api.models.shared.Security; +import com.airbyte.api.models.shared.SourceAirtable; +import com.airbyte.api.models.shared.SourceAirtableAirtableEnum; +import com.airbyte.api.models.shared.SourceAirtableCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceAirtableCredentialsOAuth20AuthMethodEnum; +import com.airbyte.api.models.shared.SourceAirtableCredentialsPersonalAccessToken; +import com.airbyte.api.models.shared.SourceAirtableCredentialsPersonalAccessTokenAuthMethodEnum; +import com.airbyte.api.models.shared.SourceAlloydb; +import com.airbyte.api.models.shared.SourceAlloydbAlloydbEnum; +import com.airbyte.api.models.shared.SourceAlloydbReplicationMethodStandard; +import com.airbyte.api.models.shared.SourceAlloydbReplicationMethodStandardMethodEnum; +import com.airbyte.api.models.shared.SourceAlloydbTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.SourceAlloydbTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceAlloydbTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.SourceAlloydbTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceAlloydbTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourceAlloydbTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceAmazonAds; +import com.airbyte.api.models.shared.SourceAmazonAdsAmazonAdsEnum; +import com.airbyte.api.models.shared.SourceAmazonAdsAuthTypeEnum; +import com.airbyte.api.models.shared.SourceAmazonAdsRegionEnum; +import com.airbyte.api.models.shared.SourceAmazonAdsReportRecordTypesEnum; +import com.airbyte.api.models.shared.SourceAmazonAdsStateFilterEnum; +import com.airbyte.api.models.shared.SourceAmazonSellerPartner; +import com.airbyte.api.models.shared.SourceAmazonSellerPartnerAWSEnvironmentEnum; +import com.airbyte.api.models.shared.SourceAmazonSellerPartnerAWSRegionEnum; +import com.airbyte.api.models.shared.SourceAmazonSellerPartnerAmazonSellerPartnerEnum; +import com.airbyte.api.models.shared.SourceAmazonSellerPartnerAuthTypeEnum; +import com.airbyte.api.models.shared.SourceAmazonSqs; +import com.airbyte.api.models.shared.SourceAmazonSqsAWSRegionEnum; +import com.airbyte.api.models.shared.SourceAmazonSqsAmazonSqsEnum; +import com.airbyte.api.models.shared.SourceAmplitude; +import com.airbyte.api.models.shared.SourceAmplitudeAmplitudeEnum; +import com.airbyte.api.models.shared.SourceAmplitudeDataRegionEnum; +import com.airbyte.api.models.shared.SourceApifyDataset; +import com.airbyte.api.models.shared.SourceApifyDatasetApifyDatasetEnum; +import com.airbyte.api.models.shared.SourceAsana; +import com.airbyte.api.models.shared.SourceAsanaAsanaEnum; +import com.airbyte.api.models.shared.SourceAsanaCredentialsAuthenticateViaAsanaOauth; +import com.airbyte.api.models.shared.SourceAsanaCredentialsAuthenticateViaAsanaOauthCredentialsTitleEnum; +import com.airbyte.api.models.shared.SourceAsanaCredentialsAuthenticateWithPersonalAccessToken; +import com.airbyte.api.models.shared.SourceAsanaCredentialsAuthenticateWithPersonalAccessTokenCredentialsTitleEnum; +import com.airbyte.api.models.shared.SourceAuth0; +import com.airbyte.api.models.shared.SourceAuth0Auth0Enum; +import com.airbyte.api.models.shared.SourceAuth0CredentialsOAuth2AccessToken; +import com.airbyte.api.models.shared.SourceAuth0CredentialsOAuth2AccessTokenAuthenticationMethodEnum; +import com.airbyte.api.models.shared.SourceAuth0CredentialsOAuth2ConfidentialApplication; +import com.airbyte.api.models.shared.SourceAuth0CredentialsOAuth2ConfidentialApplicationAuthenticationMethodEnum; +import com.airbyte.api.models.shared.SourceAwsCloudtrail; +import com.airbyte.api.models.shared.SourceAwsCloudtrailAwsCloudtrailEnum; +import com.airbyte.api.models.shared.SourceAzureBlobStorage; +import com.airbyte.api.models.shared.SourceAzureBlobStorageAzureBlobStorageEnum; +import com.airbyte.api.models.shared.SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON; +import com.airbyte.api.models.shared.SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum; +import com.airbyte.api.models.shared.SourceAzureTable; +import com.airbyte.api.models.shared.SourceAzureTableAzureTableEnum; +import com.airbyte.api.models.shared.SourceBambooHr; +import com.airbyte.api.models.shared.SourceBambooHrBambooHrEnum; +import com.airbyte.api.models.shared.SourceBigcommerce; +import com.airbyte.api.models.shared.SourceBigcommerceBigcommerceEnum; +import com.airbyte.api.models.shared.SourceBigquery; +import com.airbyte.api.models.shared.SourceBigqueryBigqueryEnum; +import com.airbyte.api.models.shared.SourceBingAds; +import com.airbyte.api.models.shared.SourceBingAdsAuthMethodEnum; +import com.airbyte.api.models.shared.SourceBingAdsBingAdsEnum; +import com.airbyte.api.models.shared.SourceBraintree; +import com.airbyte.api.models.shared.SourceBraintreeBraintreeEnum; +import com.airbyte.api.models.shared.SourceBraintreeEnvironmentEnum; +import com.airbyte.api.models.shared.SourceBraze; +import com.airbyte.api.models.shared.SourceBrazeBrazeEnum; +import com.airbyte.api.models.shared.SourceChargebee; +import com.airbyte.api.models.shared.SourceChargebeeChargebeeEnum; +import com.airbyte.api.models.shared.SourceChargebeeProductCatalogEnum; +import com.airbyte.api.models.shared.SourceChartmogul; +import com.airbyte.api.models.shared.SourceChartmogulChartmogulEnum; +import com.airbyte.api.models.shared.SourceChartmogulIntervalEnum; +import com.airbyte.api.models.shared.SourceClickhouse; +import com.airbyte.api.models.shared.SourceClickhouseClickhouseEnum; +import com.airbyte.api.models.shared.SourceClickhouseTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.SourceClickhouseTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceClickhouseTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.SourceClickhouseTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceClickhouseTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourceClickhouseTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceClickupApi; +import com.airbyte.api.models.shared.SourceClickupApiClickupApiEnum; +import com.airbyte.api.models.shared.SourceCloseCom; +import com.airbyte.api.models.shared.SourceCloseComCloseComEnum; +import com.airbyte.api.models.shared.SourceCoda; +import com.airbyte.api.models.shared.SourceCodaCodaEnum; +import com.airbyte.api.models.shared.SourceCoinApi; +import com.airbyte.api.models.shared.SourceCoinApiCoinApiEnum; +import com.airbyte.api.models.shared.SourceCoinApiEnvironmentEnum; +import com.airbyte.api.models.shared.SourceCoinmarketcap; +import com.airbyte.api.models.shared.SourceCoinmarketcapCoinmarketcapEnum; +import com.airbyte.api.models.shared.SourceCoinmarketcapDataTypeEnum; +import com.airbyte.api.models.shared.SourceConfigcat; +import com.airbyte.api.models.shared.SourceConfigcatConfigcatEnum; +import com.airbyte.api.models.shared.SourceConfluence; +import com.airbyte.api.models.shared.SourceConfluenceConfluenceEnum; +import com.airbyte.api.models.shared.SourceCreateRequest; +import com.airbyte.api.models.shared.SourceDatascope; +import com.airbyte.api.models.shared.SourceDatascopeDatascopeEnum; +import com.airbyte.api.models.shared.SourceDelighted; +import com.airbyte.api.models.shared.SourceDelightedDelightedEnum; +import com.airbyte.api.models.shared.SourceDixa; +import com.airbyte.api.models.shared.SourceDixaDixaEnum; +import com.airbyte.api.models.shared.SourceDockerhub; +import com.airbyte.api.models.shared.SourceDockerhubDockerhubEnum; +import com.airbyte.api.models.shared.SourceDremio; +import com.airbyte.api.models.shared.SourceDremioDremioEnum; +import com.airbyte.api.models.shared.SourceDynamodb; +import com.airbyte.api.models.shared.SourceDynamodbDynamodbEnum; +import com.airbyte.api.models.shared.SourceDynamodbDynamodbRegionEnum; +import com.airbyte.api.models.shared.SourceE2eTestCloud; +import com.airbyte.api.models.shared.SourceE2eTestCloudE2eTestCloudEnum; +import com.airbyte.api.models.shared.SourceE2eTestCloudMockCatalogMultiSchema; +import com.airbyte.api.models.shared.SourceE2eTestCloudMockCatalogMultiSchemaTypeEnum; +import com.airbyte.api.models.shared.SourceE2eTestCloudMockCatalogSingleSchema; +import com.airbyte.api.models.shared.SourceE2eTestCloudMockCatalogSingleSchemaTypeEnum; +import com.airbyte.api.models.shared.SourceE2eTestCloudTypeEnum; +import com.airbyte.api.models.shared.SourceEmailoctopus; +import com.airbyte.api.models.shared.SourceEmailoctopusEmailoctopusEnum; +import com.airbyte.api.models.shared.SourceExchangeRates; +import com.airbyte.api.models.shared.SourceExchangeRatesExchangeRatesEnum; +import com.airbyte.api.models.shared.SourceFacebookMarketing; +import com.airbyte.api.models.shared.SourceFacebookMarketingFacebookMarketingEnum; +import com.airbyte.api.models.shared.SourceFacebookMarketingInsightConfig; +import com.airbyte.api.models.shared.SourceFacebookMarketingInsightConfigLevelEnum; +import com.airbyte.api.models.shared.SourceFacebookMarketingInsightConfigValidActionBreakdownsEnum; +import com.airbyte.api.models.shared.SourceFacebookMarketingInsightConfigValidBreakdownsEnum; +import com.airbyte.api.models.shared.SourceFacebookMarketingInsightConfigValidEnumsEnum; +import com.airbyte.api.models.shared.SourceFacebookPages; +import com.airbyte.api.models.shared.SourceFacebookPagesFacebookPagesEnum; +import com.airbyte.api.models.shared.SourceFaker; +import com.airbyte.api.models.shared.SourceFakerFakerEnum; +import com.airbyte.api.models.shared.SourceFauna; +import com.airbyte.api.models.shared.SourceFaunaCollection; +import com.airbyte.api.models.shared.SourceFaunaCollectionDeletionsDisabled; +import com.airbyte.api.models.shared.SourceFaunaCollectionDeletionsDisabledDeletionModeEnum; +import com.airbyte.api.models.shared.SourceFaunaCollectionDeletionsEnabled; +import com.airbyte.api.models.shared.SourceFaunaCollectionDeletionsEnabledDeletionModeEnum; +import com.airbyte.api.models.shared.SourceFaunaFaunaEnum; +import com.airbyte.api.models.shared.SourceFileSecure; +import com.airbyte.api.models.shared.SourceFileSecureFileFormatEnum; +import com.airbyte.api.models.shared.SourceFileSecureFileSecureEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderAzBlobAzureBlobStorage; +import com.airbyte.api.models.shared.SourceFileSecureProviderAzBlobAzureBlobStorageStorageEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderGCSGoogleCloudStorage; +import com.airbyte.api.models.shared.SourceFileSecureProviderGCSGoogleCloudStorageStorageEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderHTTPSPublicWeb; +import com.airbyte.api.models.shared.SourceFileSecureProviderHTTPSPublicWebStorageEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderS3AmazonWebServices; +import com.airbyte.api.models.shared.SourceFileSecureProviderS3AmazonWebServicesStorageEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderSCPSecureCopyProtocol; +import com.airbyte.api.models.shared.SourceFileSecureProviderSCPSecureCopyProtocolStorageEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderSFTPSecureFileTransferProtocol; +import com.airbyte.api.models.shared.SourceFileSecureProviderSFTPSecureFileTransferProtocolStorageEnum; +import com.airbyte.api.models.shared.SourceFileSecureProviderSSHSecureShell; +import com.airbyte.api.models.shared.SourceFileSecureProviderSSHSecureShellStorageEnum; +import com.airbyte.api.models.shared.SourceFirebolt; +import com.airbyte.api.models.shared.SourceFireboltFireboltEnum; +import com.airbyte.api.models.shared.SourceFreshcaller; +import com.airbyte.api.models.shared.SourceFreshcallerFreshcallerEnum; +import com.airbyte.api.models.shared.SourceFreshdesk; +import com.airbyte.api.models.shared.SourceFreshdeskFreshdeskEnum; +import com.airbyte.api.models.shared.SourceFreshsales; +import com.airbyte.api.models.shared.SourceFreshsalesFreshsalesEnum; +import com.airbyte.api.models.shared.SourceGcs; +import com.airbyte.api.models.shared.SourceGcsGcsEnum; +import com.airbyte.api.models.shared.SourceGetlago; +import com.airbyte.api.models.shared.SourceGetlagoGetlagoEnum; +import com.airbyte.api.models.shared.SourceGithub; +import com.airbyte.api.models.shared.SourceGithubCredentialsOAuth; +import com.airbyte.api.models.shared.SourceGithubCredentialsOAuthOptionTitleEnum; +import com.airbyte.api.models.shared.SourceGithubCredentialsPersonalAccessToken; +import com.airbyte.api.models.shared.SourceGithubCredentialsPersonalAccessTokenOptionTitleEnum; +import com.airbyte.api.models.shared.SourceGithubGithubEnum; +import com.airbyte.api.models.shared.SourceGitlab; +import com.airbyte.api.models.shared.SourceGitlabCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceGitlabCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceGitlabCredentialsPrivateToken; +import com.airbyte.api.models.shared.SourceGitlabCredentialsPrivateTokenAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGitlabGitlabEnum; +import com.airbyte.api.models.shared.SourceGlassfrog; +import com.airbyte.api.models.shared.SourceGlassfrogGlassfrogEnum; +import com.airbyte.api.models.shared.SourceGnews; +import com.airbyte.api.models.shared.SourceGnewsCountryEnum; +import com.airbyte.api.models.shared.SourceGnewsGnewsEnum; +import com.airbyte.api.models.shared.SourceGnewsInEnum; +import com.airbyte.api.models.shared.SourceGnewsLanguageEnum; +import com.airbyte.api.models.shared.SourceGnewsNullableEnum; +import com.airbyte.api.models.shared.SourceGnewsSortByEnum; +import com.airbyte.api.models.shared.SourceGnewsTopHeadlinesTopicEnum; +import com.airbyte.api.models.shared.SourceGoogleAds; +import com.airbyte.api.models.shared.SourceGoogleAdsCustomQueries; +import com.airbyte.api.models.shared.SourceGoogleAdsGoogleAdsEnum; +import com.airbyte.api.models.shared.SourceGoogleAdsGoogleCredentials; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsDataApi; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauthAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthenticationAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsDataApiGoogleAnalyticsDataApiEnum; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsV4; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauthAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthenticationAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleAnalyticsV4GoogleAnalyticsV4Enum; +import com.airbyte.api.models.shared.SourceGoogleDirectory; +import com.airbyte.api.models.shared.SourceGoogleDirectoryGoogleDirectoryEnum; +import com.airbyte.api.models.shared.SourceGoogleSearchConsole; +import com.airbyte.api.models.shared.SourceGoogleSearchConsoleAuthorizationOAuth; +import com.airbyte.api.models.shared.SourceGoogleSearchConsoleAuthorizationOAuthAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication; +import com.airbyte.api.models.shared.SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthenticationAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleSearchConsoleGoogleSearchConsoleEnum; +import com.airbyte.api.models.shared.SourceGoogleSheets; +import com.airbyte.api.models.shared.SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth; +import com.airbyte.api.models.shared.SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuthAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication; +import com.airbyte.api.models.shared.SourceGoogleSheetsCredentialsServiceAccountKeyAuthenticationAuthTypeEnum; +import com.airbyte.api.models.shared.SourceGoogleSheetsGoogleSheetsEnum; +import com.airbyte.api.models.shared.SourceGoogleWebfonts; +import com.airbyte.api.models.shared.SourceGoogleWebfontsGoogleWebfontsEnum; +import com.airbyte.api.models.shared.SourceGoogleWorkspaceAdminReports; +import com.airbyte.api.models.shared.SourceGoogleWorkspaceAdminReportsGoogleWorkspaceAdminReportsEnum; +import com.airbyte.api.models.shared.SourceGreenhouse; +import com.airbyte.api.models.shared.SourceGreenhouseGreenhouseEnum; +import com.airbyte.api.models.shared.SourceGridly; +import com.airbyte.api.models.shared.SourceGridlyGridlyEnum; +import com.airbyte.api.models.shared.SourceHarvest; +import com.airbyte.api.models.shared.SourceHarvestHarvestEnum; +import com.airbyte.api.models.shared.SourceHubplanner; +import com.airbyte.api.models.shared.SourceHubplannerHubplannerEnum; +import com.airbyte.api.models.shared.SourceHubspot; +import com.airbyte.api.models.shared.SourceHubspotCredentialsOAuth; +import com.airbyte.api.models.shared.SourceHubspotCredentialsOAuthCredentialsEnum; +import com.airbyte.api.models.shared.SourceHubspotCredentialsPrivateApp; +import com.airbyte.api.models.shared.SourceHubspotCredentialsPrivateAppCredentialsEnum; +import com.airbyte.api.models.shared.SourceHubspotHubspotEnum; +import com.airbyte.api.models.shared.SourceInsightly; +import com.airbyte.api.models.shared.SourceInsightlyInsightlyEnum; +import com.airbyte.api.models.shared.SourceInstagram; +import com.airbyte.api.models.shared.SourceInstagramInstagramEnum; +import com.airbyte.api.models.shared.SourceInstatus; +import com.airbyte.api.models.shared.SourceInstatusInstatusEnum; +import com.airbyte.api.models.shared.SourceIntercom; +import com.airbyte.api.models.shared.SourceIntercomIntercomEnum; +import com.airbyte.api.models.shared.SourceIp2whois; +import com.airbyte.api.models.shared.SourceIp2whoisIp2whoisEnum; +import com.airbyte.api.models.shared.SourceIterable; +import com.airbyte.api.models.shared.SourceIterableIterableEnum; +import com.airbyte.api.models.shared.SourceJira; +import com.airbyte.api.models.shared.SourceJiraJiraEnum; +import com.airbyte.api.models.shared.SourceK6Cloud; +import com.airbyte.api.models.shared.SourceK6CloudK6CloudEnum; +import com.airbyte.api.models.shared.SourceKlarna; +import com.airbyte.api.models.shared.SourceKlarnaKlarnaEnum; +import com.airbyte.api.models.shared.SourceKlarnaRegionEnum; +import com.airbyte.api.models.shared.SourceKlaviyo; +import com.airbyte.api.models.shared.SourceKlaviyoKlaviyoEnum; +import com.airbyte.api.models.shared.SourceKustomerSinger; +import com.airbyte.api.models.shared.SourceKustomerSingerKustomerSingerEnum; +import com.airbyte.api.models.shared.SourceLaunchdarkly; +import com.airbyte.api.models.shared.SourceLaunchdarklyLaunchdarklyEnum; +import com.airbyte.api.models.shared.SourceLemlist; +import com.airbyte.api.models.shared.SourceLemlistLemlistEnum; +import com.airbyte.api.models.shared.SourceLinkedinAds; +import com.airbyte.api.models.shared.SourceLinkedinAdsCredentialsAccessToken; +import com.airbyte.api.models.shared.SourceLinkedinAdsCredentialsAccessTokenAuthMethodEnum; +import com.airbyte.api.models.shared.SourceLinkedinAdsCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceLinkedinAdsCredentialsOAuth20AuthMethodEnum; +import com.airbyte.api.models.shared.SourceLinkedinAdsLinkedinAdsEnum; +import com.airbyte.api.models.shared.SourceLinkedinPages; +import com.airbyte.api.models.shared.SourceLinkedinPagesCredentialsAccessToken; +import com.airbyte.api.models.shared.SourceLinkedinPagesCredentialsAccessTokenAuthMethodEnum; +import com.airbyte.api.models.shared.SourceLinkedinPagesCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceLinkedinPagesCredentialsOAuth20AuthMethodEnum; +import com.airbyte.api.models.shared.SourceLinkedinPagesLinkedinPagesEnum; +import com.airbyte.api.models.shared.SourceLinnworks; +import com.airbyte.api.models.shared.SourceLinnworksLinnworksEnum; +import com.airbyte.api.models.shared.SourceLokalise; +import com.airbyte.api.models.shared.SourceLokaliseLokaliseEnum; +import com.airbyte.api.models.shared.SourceMailchimp; +import com.airbyte.api.models.shared.SourceMailchimpCredentialsAPIKey; +import com.airbyte.api.models.shared.SourceMailchimpCredentialsAPIKeyAuthTypeEnum; +import com.airbyte.api.models.shared.SourceMailchimpCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceMailchimpCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceMailchimpMailchimpEnum; +import com.airbyte.api.models.shared.SourceMailgun; +import com.airbyte.api.models.shared.SourceMailgunMailgunEnum; +import com.airbyte.api.models.shared.SourceMailjetSms; +import com.airbyte.api.models.shared.SourceMailjetSmsMailjetSmsEnum; +import com.airbyte.api.models.shared.SourceMarketo; +import com.airbyte.api.models.shared.SourceMarketoMarketoEnum; +import com.airbyte.api.models.shared.SourceMetabase; +import com.airbyte.api.models.shared.SourceMetabaseMetabaseEnum; +import com.airbyte.api.models.shared.SourceMicrosoftTeams; +import com.airbyte.api.models.shared.SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft; +import com.airbyte.api.models.shared.SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftAuthTypeEnum; +import com.airbyte.api.models.shared.SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20; +import com.airbyte.api.models.shared.SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceMicrosoftTeamsMicrosoftTeamsEnum; +import com.airbyte.api.models.shared.SourceMixpanel; +import com.airbyte.api.models.shared.SourceMixpanelCredentialsProjectSecret; +import com.airbyte.api.models.shared.SourceMixpanelCredentialsProjectSecretOptionTitleEnum; +import com.airbyte.api.models.shared.SourceMixpanelCredentialsServiceAccount; +import com.airbyte.api.models.shared.SourceMixpanelCredentialsServiceAccountOptionTitleEnum; +import com.airbyte.api.models.shared.SourceMixpanelMixpanelEnum; +import com.airbyte.api.models.shared.SourceMixpanelRegionEnum; +import com.airbyte.api.models.shared.SourceMonday; +import com.airbyte.api.models.shared.SourceMondayCredentialsAPIToken; +import com.airbyte.api.models.shared.SourceMondayCredentialsAPITokenAuthTypeEnum; +import com.airbyte.api.models.shared.SourceMondayCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceMondayCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceMondayMondayEnum; +import com.airbyte.api.models.shared.SourceMongodb; +import com.airbyte.api.models.shared.SourceMongodbInstanceTypeMongoDBAtlas; +import com.airbyte.api.models.shared.SourceMongodbInstanceTypeMongoDBAtlasInstanceEnum; +import com.airbyte.api.models.shared.SourceMongodbInstanceTypeReplicaSet; +import com.airbyte.api.models.shared.SourceMongodbInstanceTypeReplicaSetInstanceEnum; +import com.airbyte.api.models.shared.SourceMongodbInstanceTypeStandaloneMongoDbInstance; +import com.airbyte.api.models.shared.SourceMongodbInstanceTypeStandaloneMongoDbInstanceInstanceEnum; +import com.airbyte.api.models.shared.SourceMongodbMongodbEnum; +import com.airbyte.api.models.shared.SourceMssql; +import com.airbyte.api.models.shared.SourceMssqlMssqlEnum; +import com.airbyte.api.models.shared.SourceMssqlReplicationMethodLogicalReplicationCDC; +import com.airbyte.api.models.shared.SourceMssqlReplicationMethodLogicalReplicationCDCDataToSyncEnum; +import com.airbyte.api.models.shared.SourceMssqlReplicationMethodLogicalReplicationCDCInitialSnapshotIsolationLevelEnum; +import com.airbyte.api.models.shared.SourceMssqlReplicationMethodLogicalReplicationCDCMethodEnum; +import com.airbyte.api.models.shared.SourceMssqlReplicationMethodStandard; +import com.airbyte.api.models.shared.SourceMssqlReplicationMethodStandardMethodEnum; +import com.airbyte.api.models.shared.SourceMssqlSslMethodEncryptedTrustServerCertificate; +import com.airbyte.api.models.shared.SourceMssqlSslMethodEncryptedTrustServerCertificateSslMethodEnum; +import com.airbyte.api.models.shared.SourceMssqlSslMethodEncryptedVerifyCertificate; +import com.airbyte.api.models.shared.SourceMssqlSslMethodEncryptedVerifyCertificateSslMethodEnum; +import com.airbyte.api.models.shared.SourceMssqlTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.SourceMssqlTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceMssqlTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.SourceMssqlTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceMssqlTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourceMssqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceMyHours; +import com.airbyte.api.models.shared.SourceMyHoursMyHoursEnum; +import com.airbyte.api.models.shared.SourceMysql; +import com.airbyte.api.models.shared.SourceMysqlMysqlEnum; +import com.airbyte.api.models.shared.SourceMysqlReplicationMethodLogicalReplicationCDC; +import com.airbyte.api.models.shared.SourceMysqlReplicationMethodLogicalReplicationCDCMethodEnum; +import com.airbyte.api.models.shared.SourceMysqlReplicationMethodStandard; +import com.airbyte.api.models.shared.SourceMysqlReplicationMethodStandardMethodEnum; +import com.airbyte.api.models.shared.SourceMysqlSslModePreferred; +import com.airbyte.api.models.shared.SourceMysqlSslModePreferredModeEnum; +import com.airbyte.api.models.shared.SourceMysqlSslModeRequired; +import com.airbyte.api.models.shared.SourceMysqlSslModeRequiredModeEnum; +import com.airbyte.api.models.shared.SourceMysqlSslModeVerifyCA; +import com.airbyte.api.models.shared.SourceMysqlSslModeVerifyCAModeEnum; +import com.airbyte.api.models.shared.SourceMysqlSslModeVerifyIdentity; +import com.airbyte.api.models.shared.SourceMysqlSslModeVerifyIdentityModeEnum; +import com.airbyte.api.models.shared.SourceMysqlTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.SourceMysqlTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceMysqlTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.SourceMysqlTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceMysqlTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourceMysqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceNetsuite; +import com.airbyte.api.models.shared.SourceNetsuiteNetsuiteEnum; +import com.airbyte.api.models.shared.SourceNotion; +import com.airbyte.api.models.shared.SourceNotionCredentialsAccessToken; +import com.airbyte.api.models.shared.SourceNotionCredentialsAccessTokenAuthTypeEnum; +import com.airbyte.api.models.shared.SourceNotionCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceNotionCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceNotionNotionEnum; +import com.airbyte.api.models.shared.SourceNytimes; +import com.airbyte.api.models.shared.SourceNytimesNytimesEnum; +import com.airbyte.api.models.shared.SourceNytimesPeriodUsedForMostPopularStreamsEnum; +import com.airbyte.api.models.shared.SourceNytimesShareTypeUsedForMostPopularSharedStreamEnum; +import com.airbyte.api.models.shared.SourceOkta; +import com.airbyte.api.models.shared.SourceOktaCredentialsAPIToken; +import com.airbyte.api.models.shared.SourceOktaCredentialsAPITokenAuthTypeEnum; +import com.airbyte.api.models.shared.SourceOktaCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceOktaCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceOktaOktaEnum; +import com.airbyte.api.models.shared.SourceOmnisend; +import com.airbyte.api.models.shared.SourceOmnisendOmnisendEnum; +import com.airbyte.api.models.shared.SourceOnesignal; +import com.airbyte.api.models.shared.SourceOnesignalApplications; +import com.airbyte.api.models.shared.SourceOnesignalOnesignalEnum; +import com.airbyte.api.models.shared.SourceOpenweather; +import com.airbyte.api.models.shared.SourceOpenweatherLanguageEnum; +import com.airbyte.api.models.shared.SourceOpenweatherOpenweatherEnum; +import com.airbyte.api.models.shared.SourceOpenweatherUnitsEnum; +import com.airbyte.api.models.shared.SourceOracle; +import com.airbyte.api.models.shared.SourceOracleConnectionDataServiceName; +import com.airbyte.api.models.shared.SourceOracleConnectionDataServiceNameConnectionTypeEnum; +import com.airbyte.api.models.shared.SourceOracleConnectionDataSystemIDSID; +import com.airbyte.api.models.shared.SourceOracleConnectionDataSystemIDSIDConnectionTypeEnum; +import com.airbyte.api.models.shared.SourceOracleEncryptionNativeNetworkEncryptionNNE; +import com.airbyte.api.models.shared.SourceOracleEncryptionNativeNetworkEncryptionNNEEncryptionAlgorithmEnum; +import com.airbyte.api.models.shared.SourceOracleEncryptionNativeNetworkEncryptionNNEEncryptionMethodEnum; +import com.airbyte.api.models.shared.SourceOracleEncryptionTLSEncryptedVerifyCertificate; +import com.airbyte.api.models.shared.SourceOracleEncryptionTLSEncryptedVerifyCertificateEncryptionMethodEnum; +import com.airbyte.api.models.shared.SourceOracleOracleEnum; +import com.airbyte.api.models.shared.SourceOracleTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.SourceOracleTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceOracleTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.SourceOracleTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceOracleTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourceOracleTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourceOrb; +import com.airbyte.api.models.shared.SourceOrbOrbEnum; +import com.airbyte.api.models.shared.SourceOrbit; +import com.airbyte.api.models.shared.SourceOrbitOrbitEnum; +import com.airbyte.api.models.shared.SourceOutreach; +import com.airbyte.api.models.shared.SourceOutreachOutreachEnum; +import com.airbyte.api.models.shared.SourcePaypalTransaction; +import com.airbyte.api.models.shared.SourcePaypalTransactionPaypalTransactionEnum; +import com.airbyte.api.models.shared.SourcePaystack; +import com.airbyte.api.models.shared.SourcePaystackPaystackEnum; +import com.airbyte.api.models.shared.SourcePendo; +import com.airbyte.api.models.shared.SourcePendoPendoEnum; +import com.airbyte.api.models.shared.SourcePersistiq; +import com.airbyte.api.models.shared.SourcePersistiqPersistiqEnum; +import com.airbyte.api.models.shared.SourcePexelsApi; +import com.airbyte.api.models.shared.SourcePexelsApiPexelsApiEnum; +import com.airbyte.api.models.shared.SourcePinterest; +import com.airbyte.api.models.shared.SourcePinterestCredentialsAccessToken; +import com.airbyte.api.models.shared.SourcePinterestCredentialsAccessTokenAuthMethodEnum; +import com.airbyte.api.models.shared.SourcePinterestCredentialsOAuth20; +import com.airbyte.api.models.shared.SourcePinterestCredentialsOAuth20AuthMethodEnum; +import com.airbyte.api.models.shared.SourcePinterestPinterestEnum; +import com.airbyte.api.models.shared.SourcePinterestStatusEnum; +import com.airbyte.api.models.shared.SourcePipedrive; +import com.airbyte.api.models.shared.SourcePipedriveAPIKeyAuthentication; +import com.airbyte.api.models.shared.SourcePipedriveAPIKeyAuthenticationAuthTypeEnum; +import com.airbyte.api.models.shared.SourcePipedrivePipedriveEnum; +import com.airbyte.api.models.shared.SourcePocket; +import com.airbyte.api.models.shared.SourcePocketContentTypeEnum; +import com.airbyte.api.models.shared.SourcePocketDetailTypeEnum; +import com.airbyte.api.models.shared.SourcePocketPocketEnum; +import com.airbyte.api.models.shared.SourcePocketSortByEnum; +import com.airbyte.api.models.shared.SourcePocketStateEnum; +import com.airbyte.api.models.shared.SourcePokeapi; +import com.airbyte.api.models.shared.SourcePokeapiPokeapiEnum; +import com.airbyte.api.models.shared.SourcePolygonStockApi; +import com.airbyte.api.models.shared.SourcePolygonStockApiPolygonStockApiEnum; +import com.airbyte.api.models.shared.SourcePostgres; +import com.airbyte.api.models.shared.SourcePostgresPostgresEnum; +import com.airbyte.api.models.shared.SourcePostgresReplicationMethodStandard; +import com.airbyte.api.models.shared.SourcePostgresReplicationMethodStandardMethodEnum; +import com.airbyte.api.models.shared.SourcePostgresTunnelMethodNoTunnel; +import com.airbyte.api.models.shared.SourcePostgresTunnelMethodNoTunnelTunnelMethodEnum; +import com.airbyte.api.models.shared.SourcePostgresTunnelMethodPasswordAuthentication; +import com.airbyte.api.models.shared.SourcePostgresTunnelMethodPasswordAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourcePostgresTunnelMethodSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourcePostgresTunnelMethodSSHKeyAuthenticationTunnelMethodEnum; +import com.airbyte.api.models.shared.SourcePosthog; +import com.airbyte.api.models.shared.SourcePosthogPosthogEnum; +import com.airbyte.api.models.shared.SourcePostmarkapp; +import com.airbyte.api.models.shared.SourcePostmarkappPostmarkappEnum; +import com.airbyte.api.models.shared.SourcePrestashop; +import com.airbyte.api.models.shared.SourcePrestashopPrestashopEnum; +import com.airbyte.api.models.shared.SourcePublicApis; +import com.airbyte.api.models.shared.SourcePublicApisPublicApisEnum; +import com.airbyte.api.models.shared.SourcePunkApi; +import com.airbyte.api.models.shared.SourcePunkApiPunkApiEnum; +import com.airbyte.api.models.shared.SourcePypi; +import com.airbyte.api.models.shared.SourcePypiPypiEnum; +import com.airbyte.api.models.shared.SourceQualaroo; +import com.airbyte.api.models.shared.SourceQualarooQualarooEnum; +import com.airbyte.api.models.shared.SourceQuickbooks; +import com.airbyte.api.models.shared.SourceQuickbooksCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceQuickbooksCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceQuickbooksQuickbooksEnum; +import com.airbyte.api.models.shared.SourceRailz; +import com.airbyte.api.models.shared.SourceRailzRailzEnum; +import com.airbyte.api.models.shared.SourceRecharge; +import com.airbyte.api.models.shared.SourceRechargeRechargeEnum; +import com.airbyte.api.models.shared.SourceRecreation; +import com.airbyte.api.models.shared.SourceRecreationRecreationEnum; +import com.airbyte.api.models.shared.SourceRecruitee; +import com.airbyte.api.models.shared.SourceRecruiteeRecruiteeEnum; +import com.airbyte.api.models.shared.SourceRecurly; +import com.airbyte.api.models.shared.SourceRecurlyRecurlyEnum; +import com.airbyte.api.models.shared.SourceRedshift; +import com.airbyte.api.models.shared.SourceRedshiftRedshiftEnum; +import com.airbyte.api.models.shared.SourceRetently; +import com.airbyte.api.models.shared.SourceRetentlyRetentlyEnum; +import com.airbyte.api.models.shared.SourceRkiCovid; +import com.airbyte.api.models.shared.SourceRkiCovidRkiCovidEnum; +import com.airbyte.api.models.shared.SourceRss; +import com.airbyte.api.models.shared.SourceRssRssEnum; +import com.airbyte.api.models.shared.SourceS3; +import com.airbyte.api.models.shared.SourceS3FormatAvro; +import com.airbyte.api.models.shared.SourceS3FormatAvroFiletypeEnum; +import com.airbyte.api.models.shared.SourceS3FormatCSV; +import com.airbyte.api.models.shared.SourceS3FormatCSVFiletypeEnum; +import com.airbyte.api.models.shared.SourceS3FormatJsonl; +import com.airbyte.api.models.shared.SourceS3FormatJsonlFiletypeEnum; +import com.airbyte.api.models.shared.SourceS3FormatJsonlUnexpectedFieldBehaviorEnum; +import com.airbyte.api.models.shared.SourceS3FormatParquet; +import com.airbyte.api.models.shared.SourceS3FormatParquetFiletypeEnum; +import com.airbyte.api.models.shared.SourceS3S3AmazonWebServices; +import com.airbyte.api.models.shared.SourceS3S3Enum; +import com.airbyte.api.models.shared.SourceSalesforce; +import com.airbyte.api.models.shared.SourceSalesforceAuthTypeEnum; +import com.airbyte.api.models.shared.SourceSalesforceSalesforceEnum; +import com.airbyte.api.models.shared.SourceSalesforceSinger; +import com.airbyte.api.models.shared.SourceSalesforceSingerApiTypeEnum; +import com.airbyte.api.models.shared.SourceSalesforceSingerSalesforceSingerEnum; +import com.airbyte.api.models.shared.SourceSalesforceStreamsCriteria; +import com.airbyte.api.models.shared.SourceSalesforceStreamsCriteriaSearchCriteriaEnum; +import com.airbyte.api.models.shared.SourceSalesloft; +import com.airbyte.api.models.shared.SourceSalesloftCredentialsAuthenticateViaAPIKey; +import com.airbyte.api.models.shared.SourceSalesloftCredentialsAuthenticateViaAPIKeyAuthTypeEnum; +import com.airbyte.api.models.shared.SourceSalesloftCredentialsAuthenticateViaOAuth; +import com.airbyte.api.models.shared.SourceSalesloftCredentialsAuthenticateViaOAuthAuthTypeEnum; +import com.airbyte.api.models.shared.SourceSalesloftSalesloftEnum; +import com.airbyte.api.models.shared.SourceSapFieldglass; +import com.airbyte.api.models.shared.SourceSapFieldglassSapFieldglassEnum; +import com.airbyte.api.models.shared.SourceSecoda; +import com.airbyte.api.models.shared.SourceSecodaSecodaEnum; +import com.airbyte.api.models.shared.SourceSendgrid; +import com.airbyte.api.models.shared.SourceSendgridSendgridEnum; +import com.airbyte.api.models.shared.SourceSendinblue; +import com.airbyte.api.models.shared.SourceSendinblueSendinblueEnum; +import com.airbyte.api.models.shared.SourceSenseforce; +import com.airbyte.api.models.shared.SourceSenseforceSenseforceEnum; +import com.airbyte.api.models.shared.SourceSentry; +import com.airbyte.api.models.shared.SourceSentrySentryEnum; +import com.airbyte.api.models.shared.SourceSftp; +import com.airbyte.api.models.shared.SourceSftpBulk; +import com.airbyte.api.models.shared.SourceSftpBulkFileTypeEnum; +import com.airbyte.api.models.shared.SourceSftpBulkSftpBulkEnum; +import com.airbyte.api.models.shared.SourceSftpCredentialsPasswordAuthentication; +import com.airbyte.api.models.shared.SourceSftpCredentialsPasswordAuthenticationAuthMethodEnum; +import com.airbyte.api.models.shared.SourceSftpCredentialsSSHKeyAuthentication; +import com.airbyte.api.models.shared.SourceSftpCredentialsSSHKeyAuthenticationAuthMethodEnum; +import com.airbyte.api.models.shared.SourceSftpSftpEnum; +import com.airbyte.api.models.shared.SourceShopify; +import com.airbyte.api.models.shared.SourceShopifyCredentialsAPIPassword; +import com.airbyte.api.models.shared.SourceShopifyCredentialsAPIPasswordAuthMethodEnum; +import com.airbyte.api.models.shared.SourceShopifyCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceShopifyCredentialsOAuth20AuthMethodEnum; +import com.airbyte.api.models.shared.SourceShopifyShopifyEnum; +import com.airbyte.api.models.shared.SourceShortio; +import com.airbyte.api.models.shared.SourceShortioShortioEnum; +import com.airbyte.api.models.shared.SourceSlack; +import com.airbyte.api.models.shared.SourceSlackCredentialsAPIToken; +import com.airbyte.api.models.shared.SourceSlackCredentialsAPITokenOptionTitleEnum; +import com.airbyte.api.models.shared.SourceSlackCredentialsSignInViaSlackOAuth; +import com.airbyte.api.models.shared.SourceSlackCredentialsSignInViaSlackOAuthOptionTitleEnum; +import com.airbyte.api.models.shared.SourceSlackSlackEnum; +import com.airbyte.api.models.shared.SourceSmaily; +import com.airbyte.api.models.shared.SourceSmailySmailyEnum; +import com.airbyte.api.models.shared.SourceSmartengage; +import com.airbyte.api.models.shared.SourceSmartengageSmartengageEnum; +import com.airbyte.api.models.shared.SourceSmartsheets; +import com.airbyte.api.models.shared.SourceSmartsheetsCredentialsAPIAccessToken; +import com.airbyte.api.models.shared.SourceSmartsheetsCredentialsAPIAccessTokenAuthTypeEnum; +import com.airbyte.api.models.shared.SourceSmartsheetsCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceSmartsheetsCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceSmartsheetsSmartsheetsEnum; +import com.airbyte.api.models.shared.SourceSnapchatMarketing; +import com.airbyte.api.models.shared.SourceSnapchatMarketingSnapchatMarketingEnum; +import com.airbyte.api.models.shared.SourceSnowflake; +import com.airbyte.api.models.shared.SourceSnowflakeCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceSnowflakeCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceSnowflakeCredentialsUsernameAndPassword; +import com.airbyte.api.models.shared.SourceSnowflakeCredentialsUsernameAndPasswordAuthTypeEnum; +import com.airbyte.api.models.shared.SourceSnowflakeSnowflakeEnum; +import com.airbyte.api.models.shared.SourceSonarCloud; +import com.airbyte.api.models.shared.SourceSonarCloudSonarCloudEnum; +import com.airbyte.api.models.shared.SourceSpacexApi; +import com.airbyte.api.models.shared.SourceSpacexApiSpacexApiEnum; +import com.airbyte.api.models.shared.SourceSquare; +import com.airbyte.api.models.shared.SourceSquareCredentialsAPIKey; +import com.airbyte.api.models.shared.SourceSquareCredentialsAPIKeyCredentialsTitleEnum; +import com.airbyte.api.models.shared.SourceSquareCredentialsOauthAuthentication; +import com.airbyte.api.models.shared.SourceSquareCredentialsOauthAuthenticationCredentialsTitleEnum; +import com.airbyte.api.models.shared.SourceSquareSquareEnum; +import com.airbyte.api.models.shared.SourceStrava; +import com.airbyte.api.models.shared.SourceStravaAuthTypeEnum; +import com.airbyte.api.models.shared.SourceStravaStravaEnum; +import com.airbyte.api.models.shared.SourceStripe; +import com.airbyte.api.models.shared.SourceStripeStripeEnum; +import com.airbyte.api.models.shared.SourceSurveySparrow; +import com.airbyte.api.models.shared.SourceSurveySparrowRegionEUBasedAccount; +import com.airbyte.api.models.shared.SourceSurveySparrowRegionEUBasedAccountUrlBaseEnum; +import com.airbyte.api.models.shared.SourceSurveySparrowRegionGlobalAccount; +import com.airbyte.api.models.shared.SourceSurveySparrowRegionGlobalAccountUrlBaseEnum; +import com.airbyte.api.models.shared.SourceSurveySparrowSurveySparrowEnum; +import com.airbyte.api.models.shared.SourceSurveymonkey; +import com.airbyte.api.models.shared.SourceSurveymonkeyOriginDatacenterOfTheSurveyMonkeyAccountEnum; +import com.airbyte.api.models.shared.SourceSurveymonkeySurveyMonkeyAuthorizationMethod; +import com.airbyte.api.models.shared.SourceSurveymonkeySurveyMonkeyAuthorizationMethodAuthMethodEnum; +import com.airbyte.api.models.shared.SourceSurveymonkeySurveymonkeyEnum; +import com.airbyte.api.models.shared.SourceTempo; +import com.airbyte.api.models.shared.SourceTempoTempoEnum; +import com.airbyte.api.models.shared.SourceTheGuardianApi; +import com.airbyte.api.models.shared.SourceTheGuardianApiTheGuardianApiEnum; +import com.airbyte.api.models.shared.SourceTiktokMarketing; +import com.airbyte.api.models.shared.SourceTiktokMarketingCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceTiktokMarketingCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceTiktokMarketingCredentialsSandboxAccessToken; +import com.airbyte.api.models.shared.SourceTiktokMarketingCredentialsSandboxAccessTokenAuthTypeEnum; +import com.airbyte.api.models.shared.SourceTiktokMarketingTiktokMarketingEnum; +import com.airbyte.api.models.shared.SourceTodoist; +import com.airbyte.api.models.shared.SourceTodoistTodoistEnum; +import com.airbyte.api.models.shared.SourceTrello; +import com.airbyte.api.models.shared.SourceTrelloTrelloEnum; +import com.airbyte.api.models.shared.SourceTrustpilot; +import com.airbyte.api.models.shared.SourceTrustpilotCredentialsAPIKey; +import com.airbyte.api.models.shared.SourceTrustpilotCredentialsAPIKeyAuthTypeEnum; +import com.airbyte.api.models.shared.SourceTrustpilotCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceTrustpilotCredentialsOAuth20AuthTypeEnum; +import com.airbyte.api.models.shared.SourceTrustpilotTrustpilotEnum; +import com.airbyte.api.models.shared.SourceTvmazeSchedule; +import com.airbyte.api.models.shared.SourceTvmazeScheduleTvmazeScheduleEnum; +import com.airbyte.api.models.shared.SourceTwilio; +import com.airbyte.api.models.shared.SourceTwilioTaskrouter; +import com.airbyte.api.models.shared.SourceTwilioTaskrouterTwilioTaskrouterEnum; +import com.airbyte.api.models.shared.SourceTwilioTwilioEnum; +import com.airbyte.api.models.shared.SourceTwitter; +import com.airbyte.api.models.shared.SourceTwitterTwitterEnum; +import com.airbyte.api.models.shared.SourceTypeform; +import com.airbyte.api.models.shared.SourceTypeformTypeformEnum; +import com.airbyte.api.models.shared.SourceUsCensus; +import com.airbyte.api.models.shared.SourceUsCensusUsCensusEnum; +import com.airbyte.api.models.shared.SourceVantage; +import com.airbyte.api.models.shared.SourceVantageVantageEnum; +import com.airbyte.api.models.shared.SourceWebflow; +import com.airbyte.api.models.shared.SourceWebflowWebflowEnum; +import com.airbyte.api.models.shared.SourceWhiskyHunter; +import com.airbyte.api.models.shared.SourceWhiskyHunterWhiskyHunterEnum; +import com.airbyte.api.models.shared.SourceWikipediaPageviews; +import com.airbyte.api.models.shared.SourceWikipediaPageviewsWikipediaPageviewsEnum; +import com.airbyte.api.models.shared.SourceWoocommerce; +import com.airbyte.api.models.shared.SourceWoocommerceWoocommerceEnum; +import com.airbyte.api.models.shared.SourceXero; +import com.airbyte.api.models.shared.SourceXeroAuthenticateViaXeroOAuth; +import com.airbyte.api.models.shared.SourceXeroXeroEnum; +import com.airbyte.api.models.shared.SourceXkcd; +import com.airbyte.api.models.shared.SourceXkcdXkcdEnum; +import com.airbyte.api.models.shared.SourceYandexMetrica; +import com.airbyte.api.models.shared.SourceYandexMetricaYandexMetricaEnum; +import com.airbyte.api.models.shared.SourceYounium; +import com.airbyte.api.models.shared.SourceYouniumYouniumEnum; +import com.airbyte.api.models.shared.SourceYoutubeAnalytics; +import com.airbyte.api.models.shared.SourceYoutubeAnalyticsYoutubeAnalyticsEnum; +import com.airbyte.api.models.shared.SourceZendeskChat; +import com.airbyte.api.models.shared.SourceZendeskChatCredentialsAccessToken; +import com.airbyte.api.models.shared.SourceZendeskChatCredentialsAccessTokenCredentialsEnum; +import com.airbyte.api.models.shared.SourceZendeskChatCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceZendeskChatCredentialsOAuth20CredentialsEnum; +import com.airbyte.api.models.shared.SourceZendeskChatZendeskChatEnum; +import com.airbyte.api.models.shared.SourceZendeskSunshine; +import com.airbyte.api.models.shared.SourceZendeskSunshineCredentialsAPIToken; +import com.airbyte.api.models.shared.SourceZendeskSunshineCredentialsAPITokenAuthMethodEnum; +import com.airbyte.api.models.shared.SourceZendeskSunshineCredentialsOAuth20; +import com.airbyte.api.models.shared.SourceZendeskSunshineCredentialsOAuth20AuthMethodEnum; +import com.airbyte.api.models.shared.SourceZendeskSunshineZendeskSunshineEnum; +import com.airbyte.api.models.shared.SourceZendeskSupport; +import com.airbyte.api.models.shared.SourceZendeskSupportZendeskSupportEnum; +import com.airbyte.api.models.shared.SourceZendeskTalk; +import com.airbyte.api.models.shared.SourceZendeskTalkZendeskTalkEnum; +import com.airbyte.api.models.shared.SourceZenloop; +import com.airbyte.api.models.shared.SourceZenloopZenloopEnum; +import com.airbyte.api.models.shared.SourceZohoCRMZohoCRMEditionEnum; +import com.airbyte.api.models.shared.SourceZohoCrm; +import com.airbyte.api.models.shared.SourceZohoCrmDataCenterLocationEnum; +import com.airbyte.api.models.shared.SourceZohoCrmEnvironmentEnum; +import com.airbyte.api.models.shared.SourceZohoCrmZohoCrmEnum; +import com.airbyte.api.models.shared.SourceZoom; +import com.airbyte.api.models.shared.SourceZoomZoomEnum; +import com.airbyte.api.models.shared.SourceZuora; +import com.airbyte.api.models.shared.SourceZuoraZuoraEnum; +import java.time.LocalDate; +import java.time.OffsetDateTime; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("dolorem") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + com.airbyte.api.models.shared.SourceCreateRequest req = new SourceCreateRequest( new SourceYoutubeAnalytics( new java.util.HashMap() {{ + put("voluptas", "deserunt"); + put("quam", "ipsum"); + put("incidunt", "qui"); + }}, SourceYoutubeAnalyticsYoutubeAnalyticsEnum.YOUTUBE_ANALYTICS) {{ + credentials = new java.util.HashMap() {{ + put("nihil", "sit"); + put("expedita", "neque"); + put("sed", "vel"); + }}; + sourceType = SourceYoutubeAnalyticsYoutubeAnalyticsEnum.YOUTUBE_ANALYTICS; + }}, "cupiditate", "cdb1a842-2bb6-479d-a322-715bf0cbb1e3") {{ + secretId = "veritatis"; + }}; + + CreateSourceResponse res = sdk.sources.createSource(req); + + if (res.sourceResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## deleteSource + +Delete a Source + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.DeleteSourceRequest; +import com.airbyte.api.models.operations.DeleteSourceResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("nobis") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + DeleteSourceRequest req = new DeleteSourceRequest("quos"); + + DeleteSourceResponse res = sdk.sources.deleteSource(req); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## getSource + +Get Source details + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.GetSourceRequest; +import com.airbyte.api.models.operations.GetSourceResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("tempore") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + GetSourceRequest req = new GetSourceRequest("cupiditate"); + + GetSourceResponse res = sdk.sources.getSource(req); + + if (res.sourceResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## initiateOAuth + +Given a source ID, workspace ID, and redirect URL, initiates OAuth for the source. + +This returns a fully formed URL for performing user authentication against the relevant source identity provider (IdP). Once authentication has been completed, the IdP will redirect to an Airbyte endpoint which will save the access and refresh tokens off as a secret and return the secret ID to the redirect URL specified in the `secret_id` query string parameter. + +That secret ID can be used to create a source with credentials in place of actual tokens. + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.InitiateOAuthResponse; +import com.airbyte.api.models.shared.InitiateOauthRequest; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("aperiam") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + com.airbyte.api.models.shared.InitiateOauthRequest req = new InitiateOauthRequest("delectus", "dolorem", "443a1108-e0ad-4cf4-b921-879fce953f73") {{ + oAuthInputConfiguration = new java.util.HashMap() {{ + put("tenetur", "dignissimos"); + put("hic", "distinctio"); + put("quod", "odio"); + put("similique", "facilis"); + }}; + }}; + + InitiateOAuthResponse res = sdk.sources.initiateOAuth(req); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## listSources + +List sources + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.ListSourcesRequest; +import com.airbyte.api.models.operations.ListSourcesResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("vero") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + ListSourcesRequest req = new ListSourcesRequest() {{ + includeDeleted = false; + limit = 498140; + offset = 293020; + workspaceIds = new String[]{{ + add("d39c0f5d-2cff-47c7-8a45-626d436813f1"), + add("6d9f5fce-6c55-4614-ac3e-250fb008c42e"), + add("141aac36-6c8d-4d6b-9442-907474778a7b"), + add("d466d28c-10ab-43cd-8a42-51904e523c7e"), + }}; + }}; + + ListSourcesResponse res = sdk.sources.listSources(req); + + if (res.sourcesResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` diff --git a/docs/streams/README.md b/docs/streams/README.md new file mode 100755 index 000000000..c14c17417 --- /dev/null +++ b/docs/streams/README.md @@ -0,0 +1,42 @@ +# streams + +### Available Operations + +* [getStreamProperties](#getstreamproperties) - Get stream properties + +## getStreamProperties + +Get stream properties + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.GetStreamPropertiesRequest; +import com.airbyte.api.models.operations.GetStreamPropertiesResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("aperiam") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + GetStreamPropertiesRequest req = new GetStreamPropertiesRequest("distinctio", "quod"); + + GetStreamPropertiesResponse res = sdk.streams.getStreamProperties(req); + + if (res.streamProperties != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` diff --git a/docs/workspaces/README.md b/docs/workspaces/README.md new file mode 100755 index 000000000..8f2cc7afd --- /dev/null +++ b/docs/workspaces/README.md @@ -0,0 +1,171 @@ +# workspaces + +### Available Operations + +* [createOrUpdateWorkspaceOAuthCredentials](#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type. +* [createWorkspace](#createworkspace) - Create a workspace +* [getWorkspace](#getworkspace) - Get Workspace details +* [listWorkspaces](#listworkspaces) - List workspaces + +## createOrUpdateWorkspaceOAuthCredentials + +Create/update a set of OAuth credentials to override the Airbyte-provided OAuth credentials used for source/destination OAuth. +In order to determine what the credential configuration needs to be, please see the connector specification of the relevant source/destination. + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.CreateOrUpdateWorkspaceOAuthCredentialsRequest; +import com.airbyte.api.models.operations.CreateOrUpdateWorkspaceOAuthCredentialsResponse; +import com.airbyte.api.models.shared.Security; +import com.airbyte.api.models.shared.WorkspaceOAuthCredentialsRequest; +import com.airbyte.api.models.shared.WorkspaceOAuthCredentialsRequestActorTypeEnum; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("dignissimos") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + CreateOrUpdateWorkspaceOAuthCredentialsRequest req = new CreateOrUpdateWorkspaceOAuthCredentialsRequest( new WorkspaceOAuthCredentialsRequest(WorkspaceOAuthCredentialsRequestActorTypeEnum.SOURCE, new java.util.HashMap() {{ + put("totam", "accusamus"); + put("aliquam", "odio"); + }}, "occaecati");, "commodi"); + + CreateOrUpdateWorkspaceOAuthCredentialsResponse res = sdk.workspaces.createOrUpdateWorkspaceOAuthCredentials(req); + + if (res.statusCode == 200) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## createWorkspace + +Create a workspace + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.CreateWorkspaceResponse; +import com.airbyte.api.models.shared.Security; +import com.airbyte.api.models.shared.WorkspaceCreateRequest; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("sapiente") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + com.airbyte.api.models.shared.WorkspaceCreateRequest req = new WorkspaceCreateRequest("dolores"); + + CreateWorkspaceResponse res = sdk.workspaces.createWorkspace(req); + + if (res.workspaceResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## getWorkspace + +Get Workspace details + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.GetWorkspaceRequest; +import com.airbyte.api.models.operations.GetWorkspaceResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("deserunt") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + GetWorkspaceRequest req = new GetWorkspaceRequest("molestiae"); + + GetWorkspaceResponse res = sdk.workspaces.getWorkspace(req); + + if (res.workspaceResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` + +## listWorkspaces + +List workspaces + +### Example Usage + +```java +package hello.world; + +import com.airbyte.api.Airbyte; +import com.airbyte.api.models.operations.ListWorkspacesRequest; +import com.airbyte.api.models.operations.ListWorkspacesResponse; +import com.airbyte.api.models.shared.Security; + +public class Application { + public static void main(String[] args) { + try { + Airbyte sdk = Airbyte.builder() + .setSecurity(new Security("accusantium") {{ + bearerAuth = "Bearer YOUR_BEARER_TOKEN_HERE"; + }}) + .build(); + + ListWorkspacesRequest req = new ListWorkspacesRequest() {{ + includeDeleted = false; + limit = 783648; + offset = 430402; + workspaceIds = new String[]{{ + add("8282aa48-2562-4f22-ae98-17ee17cbe61e"), + add("6b7b95bc-0ab3-4c20-84f3-789fd871f99d"), + add("d2efd121-aa6f-41e6-b4bd-b04f15756082"), + }}; + }}; + + ListWorkspacesResponse res = sdk.workspaces.listWorkspaces(req); + + if (res.workspacesResponse != null) { + // handle response + } + } catch (Exception e) { + // handle exception + } + } +} +``` diff --git a/files.gen b/files.gen index 9dd0c594a..9b13a7f92 100755 --- a/files.gen +++ b/files.gen @@ -1098,4 +1098,11 @@ lib/src/main/java/com/airbyte/api/models/shared/WorkspaceResponse.java lib/src/main/java/com/airbyte/api/models/shared/WorkspaceCreateRequest.java lib/src/main/java/com/airbyte/api/models/shared/WorkspacesResponse.java lib/src/main/java/com/airbyte/api/models/shared/Security.java +docs/airbyte/README.md +docs/connections/README.md +docs/destinations/README.md +docs/jobs/README.md +docs/sources/README.md +docs/streams/README.md +docs/workspaces/README.md USAGE.md \ No newline at end of file diff --git a/gen.yaml b/gen.yaml index 0abe71642..3b3104528 100644 --- a/gen.yaml +++ b/gen.yaml @@ -2,14 +2,14 @@ configVersion: 1.0.0 management: docChecksum: b33273ead3e10c4bc4f9bfeed6ad97a4 docVersion: 1.0.0 - speakeasyVersion: 1.22.2 - generationVersion: 2.20.1 + speakeasyVersion: 1.26.2 + generationVersion: 2.23.2 generation: telemetryEnabled: true sdkClassName: airbyte singleTagPerOp: false java: - version: 0.2.1 + version: 0.5.0 artifactID: api companyEmail: info@airbyte.com companyName: Airbyte diff --git a/lib/build.gradle b/lib/build.gradle index ec6147d0c..ccb6d6bfd 100755 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -41,7 +41,7 @@ publishing { maven(MavenPublication) { groupId = 'com.airbyte' artifactId = 'api' - version = '0.2.1' + version = '0.5.0' from components.java diff --git a/lib/src/main/java/com/airbyte/api/Airbyte.java b/lib/src/main/java/com/airbyte/api/Airbyte.java index c343117ae..528b7b9de 100755 --- a/lib/src/main/java/com/airbyte/api/Airbyte.java +++ b/lib/src/main/java/com/airbyte/api/Airbyte.java @@ -30,8 +30,8 @@ public class Airbyte { private com.airbyte.api.models.shared.Security _security; private String _serverUrl; private String _language = "java"; - private String _sdkVersion = "0.2.1"; - private String _genVersion = "2.20.1"; + private String _sdkVersion = "0.5.0"; + private String _genVersion = "2.23.2"; /** * The Builder class allows the configuration of a new instance of the SDK. */ diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CancelJobRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/CancelJobRequest.java index 9fd8357ad..ba6a80501 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CancelJobRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CancelJobRequest.java @@ -15,8 +15,7 @@ public CancelJobRequest withJobId(Long jobId) { return this; } - public CancelJobRequest(@JsonProperty("jobId") Long jobId) { - this.jobId = jobId; + this.jobId = jobId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CancelJobResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CancelJobResponse.java index 693e59ea1..187c72256 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CancelJobResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CancelJobResponse.java @@ -39,9 +39,8 @@ public CancelJobResponse withRawResponse(HttpResponse rawResponse) { return this; } - public CancelJobResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateConnectionResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateConnectionResponse.java index 6e5eab027..6553efb22 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateConnectionResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateConnectionResponse.java @@ -39,9 +39,8 @@ public CreateConnectionResponse withRawResponse(HttpResponse rawResponse return this; } - public CreateConnectionResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateDestinationResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateDestinationResponse.java index b895b0ad6..bb997ad5f 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateDestinationResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateDestinationResponse.java @@ -39,9 +39,8 @@ public CreateDestinationResponse withRawResponse(HttpResponse rawRespons return this; } - public CreateDestinationResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateJobResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateJobResponse.java index ec66a7c2e..137229b96 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateJobResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateJobResponse.java @@ -39,9 +39,8 @@ public CreateJobResponse withRawResponse(HttpResponse rawResponse) { return this; } - public CreateJobResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsRequest.java index dd9c3efef..f753a1d22 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsRequest.java @@ -22,9 +22,8 @@ public CreateOrUpdateWorkspaceOAuthCredentialsRequest withWorkspaceId(String wor return this; } - public CreateOrUpdateWorkspaceOAuthCredentialsRequest(@JsonProperty("WorkspaceOAuthCredentialsRequest") com.airbyte.api.models.shared.WorkspaceOAuthCredentialsRequest workspaceOAuthCredentialsRequest, @JsonProperty("workspaceId") String workspaceId) { - this.workspaceOAuthCredentialsRequest = workspaceOAuthCredentialsRequest; -this.workspaceId = workspaceId; + this.workspaceOAuthCredentialsRequest = workspaceOAuthCredentialsRequest; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsResponse.java index ffb08128d..034cf3d84 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateOrUpdateWorkspaceOAuthCredentialsResponse.java @@ -29,9 +29,8 @@ public CreateOrUpdateWorkspaceOAuthCredentialsResponse withRawResponse(HttpRespo return this; } - public CreateOrUpdateWorkspaceOAuthCredentialsResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateSourceResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateSourceResponse.java index 7c72b872e..860fb79fb 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateSourceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateSourceResponse.java @@ -39,9 +39,8 @@ public CreateSourceResponse withRawResponse(HttpResponse rawResponse) { return this; } - public CreateSourceResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/CreateWorkspaceResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/CreateWorkspaceResponse.java index 0783a33e8..bb281f5b3 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/CreateWorkspaceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/CreateWorkspaceResponse.java @@ -39,9 +39,8 @@ public CreateWorkspaceResponse withWorkspaceResponse(com.airbyte.api.models.shar return this; } - public CreateWorkspaceResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionRequest.java index d97711d65..5a78335ff 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionRequest.java @@ -15,8 +15,7 @@ public DeleteConnectionRequest withConnectionId(String connectionId) { return this; } - public DeleteConnectionRequest(@JsonProperty("connectionId") String connectionId) { - this.connectionId = connectionId; + this.connectionId = connectionId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionResponse.java index 5a767cc8e..7463b8164 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/DeleteConnectionResponse.java @@ -29,9 +29,8 @@ public DeleteConnectionResponse withRawResponse(HttpResponse rawResponse return this; } - public DeleteConnectionResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationRequest.java index 18db77930..0af41147b 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationRequest.java @@ -15,8 +15,7 @@ public DeleteDestinationRequest withDestinationId(String destinationId) { return this; } - public DeleteDestinationRequest(@JsonProperty("destinationId") String destinationId) { - this.destinationId = destinationId; + this.destinationId = destinationId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationResponse.java index f016b61cb..d27c7182a 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/DeleteDestinationResponse.java @@ -29,9 +29,8 @@ public DeleteDestinationResponse withRawResponse(HttpResponse rawRespons return this; } - public DeleteDestinationResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceRequest.java index 2095f5f2c..5dea9241b 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceRequest.java @@ -15,8 +15,7 @@ public DeleteSourceRequest withSourceId(String sourceId) { return this; } - public DeleteSourceRequest(@JsonProperty("sourceId") String sourceId) { - this.sourceId = sourceId; + this.sourceId = sourceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceResponse.java index 35548efad..f73b411f0 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/DeleteSourceResponse.java @@ -29,9 +29,8 @@ public DeleteSourceResponse withRawResponse(HttpResponse rawResponse) { return this; } - public DeleteSourceResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionRequest.java index acec3b5a2..7aaa49d42 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionRequest.java @@ -15,8 +15,7 @@ public GetConnectionRequest withConnectionId(String connectionId) { return this; } - public GetConnectionRequest(@JsonProperty("connectionId") String connectionId) { - this.connectionId = connectionId; + this.connectionId = connectionId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionResponse.java index 3f63ff565..b13cbad59 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetConnectionResponse.java @@ -39,9 +39,8 @@ public GetConnectionResponse withRawResponse(HttpResponse rawResponse) { return this; } - public GetConnectionResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationRequest.java index 6c2577fd3..391000bb2 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationRequest.java @@ -15,8 +15,7 @@ public GetDestinationRequest withDestinationId(String destinationId) { return this; } - public GetDestinationRequest(@JsonProperty("destinationId") String destinationId) { - this.destinationId = destinationId; + this.destinationId = destinationId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationResponse.java index 7e5109abc..ed50c4e65 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetDestinationResponse.java @@ -39,9 +39,8 @@ public GetDestinationResponse withRawResponse(HttpResponse rawResponse) return this; } - public GetDestinationResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetJobRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/GetJobRequest.java index 60c3f048f..d7ad62da4 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetJobRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetJobRequest.java @@ -15,8 +15,7 @@ public GetJobRequest withJobId(Long jobId) { return this; } - public GetJobRequest(@JsonProperty("jobId") Long jobId) { - this.jobId = jobId; + this.jobId = jobId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetJobResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/GetJobResponse.java index 8f79f46d5..715c95b97 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetJobResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetJobResponse.java @@ -39,9 +39,8 @@ public GetJobResponse withRawResponse(HttpResponse rawResponse) { return this; } - public GetJobResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetSourceRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/GetSourceRequest.java index 7ec1ccaa1..958a10e68 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetSourceRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetSourceRequest.java @@ -15,8 +15,7 @@ public GetSourceRequest withSourceId(String sourceId) { return this; } - public GetSourceRequest(@JsonProperty("sourceId") String sourceId) { - this.sourceId = sourceId; + this.sourceId = sourceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetSourceResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/GetSourceResponse.java index 7c8f63c2c..9b43c616b 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetSourceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetSourceResponse.java @@ -39,9 +39,8 @@ public GetSourceResponse withRawResponse(HttpResponse rawResponse) { return this; } - public GetSourceResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesRequest.java index ea7345989..179b8ccde 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesRequest.java @@ -28,9 +28,8 @@ public GetStreamPropertiesRequest withSourceId(String sourceId) { return this; } - public GetStreamPropertiesRequest(@JsonProperty("destinationId") String destinationId, @JsonProperty("sourceId") String sourceId) { - this.destinationId = destinationId; -this.sourceId = sourceId; + this.destinationId = destinationId; + this.sourceId = sourceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesResponse.java index 6ac3728eb..e85d57803 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetStreamPropertiesResponse.java @@ -39,9 +39,8 @@ public GetStreamPropertiesResponse withStreamProperties(com.airbyte.api.models.s return this; } - public GetStreamPropertiesResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceRequest.java index a679a813d..8b8e31edd 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceRequest.java @@ -15,8 +15,7 @@ public GetWorkspaceRequest withWorkspaceId(String workspaceId) { return this; } - public GetWorkspaceRequest(@JsonProperty("workspaceId") String workspaceId) { - this.workspaceId = workspaceId; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceResponse.java index 496ae45d4..015a5addd 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/GetWorkspaceResponse.java @@ -39,9 +39,8 @@ public GetWorkspaceResponse withWorkspaceResponse(com.airbyte.api.models.shared. return this; } - public GetWorkspaceResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/InitiateOAuthResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/InitiateOAuthResponse.java index 873cb806a..92c717052 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/InitiateOAuthResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/InitiateOAuthResponse.java @@ -29,9 +29,8 @@ public InitiateOAuthResponse withRawResponse(HttpResponse rawResponse) { return this; } - public InitiateOAuthResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsRequest.java index ab199d809..02c0708bc 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsRequest.java @@ -47,6 +47,5 @@ public ListConnectionsRequest withWorkspaceIds(String[] workspaceIds) { return this; } - public ListConnectionsRequest(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsResponse.java index 9884bb165..27a75f567 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListConnectionsResponse.java @@ -39,9 +39,8 @@ public ListConnectionsResponse withRawResponse(HttpResponse rawResponse) return this; } - public ListConnectionsResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsRequest.java index 806d74390..dc27e4172 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsRequest.java @@ -47,6 +47,5 @@ public ListDestinationsRequest withWorkspaceIds(String[] workspaceIds) { return this; } - public ListDestinationsRequest(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsResponse.java index 391f8383b..a8ff2a3a8 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListDestinationsResponse.java @@ -39,9 +39,8 @@ public ListDestinationsResponse withRawResponse(HttpResponse rawResponse return this; } - public ListDestinationsResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListJobsRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/ListJobsRequest.java index 7d7de464b..0f927ffe5 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListJobsRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListJobsRequest.java @@ -48,8 +48,7 @@ public ListJobsRequest withOffset(Integer offset) { return this; } - public ListJobsRequest(@JsonProperty("connectionId") String connectionId) { - this.connectionId = connectionId; + this.connectionId = connectionId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListJobsResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/ListJobsResponse.java index e906ce60c..5bfb3ed15 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListJobsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListJobsResponse.java @@ -39,9 +39,8 @@ public ListJobsResponse withRawResponse(HttpResponse rawResponse) { return this; } - public ListJobsResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesRequest.java index cbc41c8d4..2566ea1d1 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesRequest.java @@ -47,6 +47,5 @@ public ListSourcesRequest withWorkspaceIds(String[] workspaceIds) { return this; } - public ListSourcesRequest(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesResponse.java index 1cebcef15..b3eff5e2e 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListSourcesResponse.java @@ -39,9 +39,8 @@ public ListSourcesResponse withRawResponse(HttpResponse rawResponse) { return this; } - public ListSourcesResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesRequest.java b/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesRequest.java index b89cf0432..4eb2641ea 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesRequest.java @@ -47,6 +47,5 @@ public ListWorkspacesRequest withWorkspaceIds(String[] workspaceIds) { return this; } - public ListWorkspacesRequest(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesResponse.java b/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesResponse.java index 39b996a48..7f631bf32 100755 --- a/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/operations/ListWorkspacesResponse.java @@ -39,9 +39,8 @@ public ListWorkspacesResponse withWorkspacesResponse(com.airbyte.api.models.shar return this; } - public ListWorkspacesResponse(@JsonProperty("ContentType") String contentType, @JsonProperty("StatusCode") Integer statusCode) { - this.contentType = contentType; -this.statusCode = statusCode; + this.contentType = contentType; + this.statusCode = statusCode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionCreateRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionCreateRequest.java index bcaa3c63b..66c63ea31 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionCreateRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionCreateRequest.java @@ -97,9 +97,8 @@ public ConnectionCreateRequest withSourceId(String sourceId) { return this; } - public ConnectionCreateRequest(@JsonProperty("destinationId") String destinationId, @JsonProperty("sourceId") String sourceId) { - this.destinationId = destinationId; -this.sourceId = sourceId; + this.destinationId = destinationId; + this.sourceId = sourceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionResponse.java index 962b84812..8a3f6d4f7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionResponse.java @@ -69,15 +69,14 @@ public ConnectionResponse withWorkspaceId(String workspaceId) { return this; } - public ConnectionResponse(@JsonProperty("connectionId") String connectionId, @JsonProperty("dataResidency") GeographyEnumEnum dataResidency, @JsonProperty("destinationId") String destinationId, @JsonProperty("name") String name, @JsonProperty("schedule") ConnectionScheduleResponse schedule, @JsonProperty("sourceId") String sourceId, @JsonProperty("status") ConnectionStatusEnumEnum status, @JsonProperty("workspaceId") String workspaceId) { - this.connectionId = connectionId; -this.dataResidency = dataResidency; -this.destinationId = destinationId; -this.name = name; -this.schedule = schedule; -this.sourceId = sourceId; -this.status = status; -this.workspaceId = workspaceId; + this.connectionId = connectionId; + this.dataResidency = dataResidency; + this.destinationId = destinationId; + this.name = name; + this.schedule = schedule; + this.sourceId = sourceId; + this.status = status; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleCreate.java b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleCreate.java index 0d7d1f0c1..b8932d1b7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleCreate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleCreate.java @@ -27,8 +27,7 @@ public ConnectionScheduleCreate withScheduleType(ScheduleTypeEnumEnum scheduleTy return this; } - public ConnectionScheduleCreate(@JsonProperty("scheduleType") ScheduleTypeEnumEnum scheduleType) { - this.scheduleType = scheduleType; + this.scheduleType = scheduleType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleResponse.java index ffd1d897f..69aafec16 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionScheduleResponse.java @@ -35,8 +35,7 @@ public ConnectionScheduleResponse withScheduleType(ScheduleTypeWithBasicEnumEnum return this; } - public ConnectionScheduleResponse(@JsonProperty("scheduleType") ScheduleTypeWithBasicEnumEnum scheduleType) { - this.scheduleType = scheduleType; + this.scheduleType = scheduleType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionsResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionsResponse.java index 6b6c04cbc..69c72fc4c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/ConnectionsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/ConnectionsResponse.java @@ -35,8 +35,7 @@ public ConnectionsResponse withPrevious(String previous) { return this; } - public ConnectionsResponse(@JsonProperty("data") ConnectionResponse[] data) { - this.data = data; + this.data = data; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAmazonSqs.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAmazonSqs.java index 883f49860..6c56d12fd 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAmazonSqs.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAmazonSqs.java @@ -94,10 +94,9 @@ public DestinationAmazonSqs withSecretKey(String secretKey) { return this; } - public DestinationAmazonSqs(@JsonProperty("destinationType") DestinationAmazonSqsAmazonSqsEnum destinationType, @JsonProperty("queue_url") String queueUrl, @JsonProperty("region") DestinationAmazonSqsAWSRegionEnum region) { - this.destinationType = destinationType; -this.queueUrl = queueUrl; -this.region = region; + this.destinationType = destinationType; + this.queueUrl = queueUrl; + this.region = region; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalake.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalake.java index 2dc373e2a..4c20edab6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalake.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalake.java @@ -147,12 +147,11 @@ public DestinationAwsDatalake withRegion(DestinationAwsDatalakeS3BucketRegionEnu return this; } - public DestinationAwsDatalake(@JsonProperty("bucket_name") String bucketName, @JsonProperty("credentials") Object credentials, @JsonProperty("destinationType") DestinationAwsDatalakeAwsDatalakeEnum destinationType, @JsonProperty("lakeformation_database_name") String lakeformationDatabaseName, @JsonProperty("region") DestinationAwsDatalakeS3BucketRegionEnum region) { - this.bucketName = bucketName; -this.credentials = credentials; -this.destinationType = destinationType; -this.lakeformationDatabaseName = lakeformationDatabaseName; -this.region = region; + this.bucketName = bucketName; + this.credentials = credentials; + this.destinationType = destinationType; + this.lakeformationDatabaseName = lakeformationDatabaseName; + this.region = region; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMRole.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMRole.java index 1d6020f0c..fab6130e8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMRole.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMRole.java @@ -30,9 +30,8 @@ public DestinationAwsDatalakeCredentialsIAMRole withRoleArn(String roleArn) { return this; } - public DestinationAwsDatalakeCredentialsIAMRole(@JsonProperty("credentials_title") DestinationAwsDatalakeCredentialsIAMRoleCredentialsTitleEnum credentialsTitle, @JsonProperty("role_arn") String roleArn) { - this.credentialsTitle = credentialsTitle; -this.roleArn = roleArn; + this.credentialsTitle = credentialsTitle; + this.roleArn = roleArn; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMUser.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMUser.java index 21be54ad4..478258f69 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMUser.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeCredentialsIAMUser.java @@ -40,10 +40,9 @@ public DestinationAwsDatalakeCredentialsIAMUser withCredentialsTitle(Destination return this; } - public DestinationAwsDatalakeCredentialsIAMUser(@JsonProperty("aws_access_key_id") String awsAccessKeyId, @JsonProperty("aws_secret_access_key") String awsSecretAccessKey, @JsonProperty("credentials_title") DestinationAwsDatalakeCredentialsIAMUserCredentialsTitleEnum credentialsTitle) { - this.awsAccessKeyId = awsAccessKeyId; -this.awsSecretAccessKey = awsSecretAccessKey; -this.credentialsTitle = credentialsTitle; + this.awsAccessKeyId = awsAccessKeyId; + this.awsSecretAccessKey = awsSecretAccessKey; + this.credentialsTitle = credentialsTitle; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON.java index e615f6417..0ff49c0f9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON.java @@ -30,8 +30,7 @@ public DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON withFormatType( return this; } - public DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSON(@JsonProperty("format_type") DestinationAwsDatalakeFormatJSONLinesNewlineDelimitedJSONFormatTypeWildcardEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatParquetColumnarStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatParquetColumnarStorage.java index 9eabb10c0..7234b2d87 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatParquetColumnarStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAwsDatalakeFormatParquetColumnarStorage.java @@ -30,8 +30,7 @@ public DestinationAwsDatalakeFormatParquetColumnarStorage withFormatType(Destina return this; } - public DestinationAwsDatalakeFormatParquetColumnarStorage(@JsonProperty("format_type") DestinationAwsDatalakeFormatParquetColumnarStorageFormatTypeWildcardEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorage.java index 641cc8909..09cb7c999 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorage.java @@ -93,11 +93,10 @@ public DestinationAzureBlobStorage withFormat(Object format) { return this; } - public DestinationAzureBlobStorage(@JsonProperty("azure_blob_storage_account_key") String azureBlobStorageAccountKey, @JsonProperty("azure_blob_storage_account_name") String azureBlobStorageAccountName, @JsonProperty("destinationType") DestinationAzureBlobStorageAzureBlobStorageEnum destinationType, @JsonProperty("format") Object format) { - this.azureBlobStorageAccountKey = azureBlobStorageAccountKey; -this.azureBlobStorageAccountName = azureBlobStorageAccountName; -this.destinationType = destinationType; -this.format = format; + this.azureBlobStorageAccountKey = azureBlobStorageAccountKey; + this.azureBlobStorageAccountName = azureBlobStorageAccountName; + this.destinationType = destinationType; + this.format = format; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatCSVCommaSeparatedValues.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatCSVCommaSeparatedValues.java index df929a574..211d6f028 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatCSVCommaSeparatedValues.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatCSVCommaSeparatedValues.java @@ -27,9 +27,8 @@ public DestinationAzureBlobStorageFormatCSVCommaSeparatedValues withFormatType(D return this; } - public DestinationAzureBlobStorageFormatCSVCommaSeparatedValues(@JsonProperty("flattening") DestinationAzureBlobStorageFormatCSVCommaSeparatedValuesNormalizationFlatteningEnum flattening, @JsonProperty("format_type") DestinationAzureBlobStorageFormatCSVCommaSeparatedValuesFormatTypeEnum formatType) { - this.flattening = flattening; -this.formatType = formatType; + this.flattening = flattening; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java index af8aa213c..8117d0fe6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java @@ -17,8 +17,7 @@ public DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON withFormat return this; } - public DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON(@JsonProperty("format_type") DestinationAzureBlobStorageFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigquery.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigquery.java index cab44f520..5e67421c9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigquery.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigquery.java @@ -93,11 +93,10 @@ public DestinationBigquery withTransformationPriority(DestinationBigqueryTransfo return this; } - public DestinationBigquery(@JsonProperty("dataset_id") String datasetId, @JsonProperty("dataset_location") DestinationBigqueryDatasetLocationEnum datasetLocation, @JsonProperty("destinationType") DestinationBigqueryBigqueryEnum destinationType, @JsonProperty("project_id") String projectId) { - this.datasetId = datasetId; -this.datasetLocation = datasetLocation; -this.destinationType = destinationType; -this.projectId = projectId; + this.datasetId = datasetId; + this.datasetLocation = datasetLocation; + this.destinationType = destinationType; + this.projectId = projectId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalized.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalized.java index 3e2bba593..8ef4747be 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalized.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalized.java @@ -83,10 +83,9 @@ public DestinationBigqueryDenormalized withProjectId(String projectId) { return this; } - public DestinationBigqueryDenormalized(@JsonProperty("dataset_id") String datasetId, @JsonProperty("destinationType") DestinationBigqueryDenormalizedBigqueryDenormalizedEnum destinationType, @JsonProperty("project_id") String projectId) { - this.datasetId = datasetId; -this.destinationType = destinationType; -this.projectId = projectId; + this.datasetId = datasetId; + this.destinationType = destinationType; + this.projectId = projectId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStaging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStaging.java index 2573882a1..fe991b744 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStaging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStaging.java @@ -60,11 +60,10 @@ public DestinationBigqueryDenormalizedLoadingMethodGCSStaging withMethod(Destina return this; } - public DestinationBigqueryDenormalizedLoadingMethodGCSStaging(@JsonProperty("credential") Object credential, @JsonProperty("gcs_bucket_name") String gcsBucketName, @JsonProperty("gcs_bucket_path") String gcsBucketPath, @JsonProperty("method") DestinationBigqueryDenormalizedLoadingMethodGCSStagingMethodEnum method) { - this.credential = credential; -this.gcsBucketName = gcsBucketName; -this.gcsBucketPath = gcsBucketPath; -this.method = method; + this.credential = credential; + this.gcsBucketName = gcsBucketName; + this.gcsBucketPath = gcsBucketPath; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey.java index 375d79e30..a86f3de60 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey.java @@ -37,10 +37,9 @@ public DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey w return this; } - public DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKey(@JsonProperty("credential_type") DestinationBigqueryDenormalizedLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum credentialType, @JsonProperty("hmac_key_access_id") String hmacKeyAccessId, @JsonProperty("hmac_key_secret") String hmacKeySecret) { - this.credentialType = credentialType; -this.hmacKeyAccessId = hmacKeyAccessId; -this.hmacKeySecret = hmacKeySecret; + this.credentialType = credentialType; + this.hmacKeyAccessId = hmacKeyAccessId; + this.hmacKeySecret = hmacKeySecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodStandardInserts.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodStandardInserts.java index 28183f7dc..3886f720c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodStandardInserts.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryDenormalizedLoadingMethodStandardInserts.java @@ -17,8 +17,7 @@ public DestinationBigqueryDenormalizedLoadingMethodStandardInserts withMethod(De return this; } - public DestinationBigqueryDenormalizedLoadingMethodStandardInserts(@JsonProperty("method") DestinationBigqueryDenormalizedLoadingMethodStandardInsertsMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStaging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStaging.java index 1fb25d7f4..2aad7d0ed 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStaging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStaging.java @@ -60,11 +60,10 @@ public DestinationBigqueryLoadingMethodGCSStaging withMethod(DestinationBigquery return this; } - public DestinationBigqueryLoadingMethodGCSStaging(@JsonProperty("credential") Object credential, @JsonProperty("gcs_bucket_name") String gcsBucketName, @JsonProperty("gcs_bucket_path") String gcsBucketPath, @JsonProperty("method") DestinationBigqueryLoadingMethodGCSStagingMethodEnum method) { - this.credential = credential; -this.gcsBucketName = gcsBucketName; -this.gcsBucketPath = gcsBucketPath; -this.method = method; + this.credential = credential; + this.gcsBucketName = gcsBucketName; + this.gcsBucketPath = gcsBucketPath; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey.java index 0e47c34cb..9498b9417 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey.java @@ -37,10 +37,9 @@ public DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey withHmacKeySe return this; } - public DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKey(@JsonProperty("credential_type") DestinationBigqueryLoadingMethodGCSStagingCredentialHMACKeyCredentialTypeEnum credentialType, @JsonProperty("hmac_key_access_id") String hmacKeyAccessId, @JsonProperty("hmac_key_secret") String hmacKeySecret) { - this.credentialType = credentialType; -this.hmacKeyAccessId = hmacKeyAccessId; -this.hmacKeySecret = hmacKeySecret; + this.credentialType = credentialType; + this.hmacKeyAccessId = hmacKeyAccessId; + this.hmacKeySecret = hmacKeySecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodStandardInserts.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodStandardInserts.java index 93d2b3c51..fd2c25f43 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodStandardInserts.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationBigqueryLoadingMethodStandardInserts.java @@ -17,8 +17,7 @@ public DestinationBigqueryLoadingMethodStandardInserts withMethod(DestinationBig return this; } - public DestinationBigqueryLoadingMethodStandardInserts(@JsonProperty("method") DestinationBigqueryLoadingMethodStandardInsertsMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationCassandra.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationCassandra.java index 9fb370328..449a9f0e7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationCassandra.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationCassandra.java @@ -91,13 +91,12 @@ public DestinationCassandra withUsername(String username) { return this; } - public DestinationCassandra(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("address") String address, @JsonProperty("destinationType") DestinationCassandraCassandraEnum destinationType, @JsonProperty("keyspace") String keyspace, @JsonProperty("port") Long port) { - this.username = username; -this.password = password; -this.address = address; -this.destinationType = destinationType; -this.keyspace = keyspace; -this.port = port; + this.username = username; + this.password = password; + this.address = address; + this.destinationType = destinationType; + this.keyspace = keyspace; + this.port = port; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouse.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouse.java index 37b8e7c22..50e5b4ae3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouse.java @@ -92,12 +92,11 @@ public DestinationClickhouse withUsername(String username) { return this; } - public DestinationClickhouse(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationClickhouseClickhouseEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("username") String username) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.username = username; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodNoTunnel.java index 9d568f48c..9b0d31f34 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationClickhouseTunnelMethodNoTunnel withTunnelMethod(DestinationCli return this; } - public DestinationClickhouseTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationClickhouseTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodPasswordAuthentication.java index 10a20bc44..544e69c55 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationClickhouseTunnelMethodPasswordAuthentication withTunnelUserPas return this; } - public DestinationClickhouseTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationClickhouseTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodSSHKeyAuthentication.java index 5ff7d8a13..9f731c1f8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationClickhouseTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationClickhouseTunnelMethodSSHKeyAuthentication withTunnelUser(Stri return this; } - public DestinationClickhouseTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationClickhouseTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationConvex.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationConvex.java index b220156f6..800f0617a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationConvex.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationConvex.java @@ -37,10 +37,9 @@ public DestinationConvex withDestinationType(DestinationConvexConvexEnum destina return this; } - public DestinationConvex(@JsonProperty("access_key") String accessKey, @JsonProperty("deployment_url") String deploymentUrl, @JsonProperty("destinationType") DestinationConvexConvexEnum destinationType) { - this.accessKey = accessKey; -this.deploymentUrl = deploymentUrl; -this.destinationType = destinationType; + this.accessKey = accessKey; + this.deploymentUrl = deploymentUrl; + this.destinationType = destinationType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationCreateRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationCreateRequest.java index 447a0d6a2..b734fdfc3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationCreateRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationCreateRequest.java @@ -31,10 +31,9 @@ public DestinationCreateRequest withWorkspaceId(String workspaceId) { return this; } - public DestinationCreateRequest(@JsonProperty("configuration") Object configuration, @JsonProperty("name") String name, @JsonProperty("workspaceId") String workspaceId) { - this.configuration = configuration; -this.name = name; -this.workspaceId = workspaceId; + this.configuration = configuration; + this.name = name; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabend.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabend.java index dc8d2e7e3..83cf960b7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabend.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabend.java @@ -82,11 +82,10 @@ public DestinationDatabend withUsername(String username) { return this; } - public DestinationDatabend(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationDatabendDatabendEnum destinationType, @JsonProperty("host") String host, @JsonProperty("username") String username) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.username = username; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricks.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricks.java index 47d0de8a9..3839277ea 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricks.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricks.java @@ -113,13 +113,12 @@ public DestinationDatabricks withSchema(String schema) { return this; } - public DestinationDatabricks(@JsonProperty("accept_terms") Boolean acceptTerms, @JsonProperty("data_source") Object dataSource, @JsonProperty("databricks_http_path") String databricksHttpPath, @JsonProperty("databricks_personal_access_token") String databricksPersonalAccessToken, @JsonProperty("databricks_server_hostname") String databricksServerHostname, @JsonProperty("destinationType") DestinationDatabricksDatabricksEnum destinationType) { - this.acceptTerms = acceptTerms; -this.dataSource = dataSource; -this.databricksHttpPath = databricksHttpPath; -this.databricksPersonalAccessToken = databricksPersonalAccessToken; -this.databricksServerHostname = databricksServerHostname; -this.destinationType = destinationType; + this.acceptTerms = acceptTerms; + this.dataSource = dataSource; + this.databricksHttpPath = databricksHttpPath; + this.databricksPersonalAccessToken = databricksPersonalAccessToken; + this.databricksServerHostname = databricksServerHostname; + this.destinationType = destinationType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAmazonS3.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAmazonS3.java index 06c6dfe09..e4f37b028 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAmazonS3.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAmazonS3.java @@ -80,13 +80,12 @@ public DestinationDatabricksDataSourceAmazonS3 withS3SecretAccessKey(String s3Se return this; } - public DestinationDatabricksDataSourceAmazonS3(@JsonProperty("data_source_type") DestinationDatabricksDataSourceAmazonS3DataSourceTypeEnum dataSourceType, @JsonProperty("s3_access_key_id") String s3AccessKeyId, @JsonProperty("s3_bucket_name") String s3BucketName, @JsonProperty("s3_bucket_path") String s3BucketPath, @JsonProperty("s3_bucket_region") DestinationDatabricksDataSourceAmazonS3S3BucketRegionEnum s3BucketRegion, @JsonProperty("s3_secret_access_key") String s3SecretAccessKey) { - this.dataSourceType = dataSourceType; -this.s3AccessKeyId = s3AccessKeyId; -this.s3BucketName = s3BucketName; -this.s3BucketPath = s3BucketPath; -this.s3BucketRegion = s3BucketRegion; -this.s3SecretAccessKey = s3SecretAccessKey; + this.dataSourceType = dataSourceType; + this.s3AccessKeyId = s3AccessKeyId; + this.s3BucketName = s3BucketName; + this.s3BucketPath = s3BucketPath; + this.s3BucketRegion = s3BucketRegion; + this.s3SecretAccessKey = s3SecretAccessKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAzureBlobStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAzureBlobStorage.java index e81b5bf77..a7de8fe6d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAzureBlobStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceAzureBlobStorage.java @@ -60,11 +60,10 @@ public DestinationDatabricksDataSourceAzureBlobStorage withDataSourceType(Destin return this; } - public DestinationDatabricksDataSourceAzureBlobStorage(@JsonProperty("azure_blob_storage_account_name") String azureBlobStorageAccountName, @JsonProperty("azure_blob_storage_container_name") String azureBlobStorageContainerName, @JsonProperty("azure_blob_storage_sas_token") String azureBlobStorageSasToken, @JsonProperty("data_source_type") DestinationDatabricksDataSourceAzureBlobStorageDataSourceTypeEnum dataSourceType) { - this.azureBlobStorageAccountName = azureBlobStorageAccountName; -this.azureBlobStorageContainerName = azureBlobStorageContainerName; -this.azureBlobStorageSasToken = azureBlobStorageSasToken; -this.dataSourceType = dataSourceType; + this.azureBlobStorageAccountName = azureBlobStorageAccountName; + this.azureBlobStorageContainerName = azureBlobStorageContainerName; + this.azureBlobStorageSasToken = azureBlobStorageSasToken; + this.dataSourceType = dataSourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceRecommendedManagedTables.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceRecommendedManagedTables.java index 4c85d34b4..e04134fce 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceRecommendedManagedTables.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDatabricksDataSourceRecommendedManagedTables.java @@ -17,8 +17,7 @@ public DestinationDatabricksDataSourceRecommendedManagedTables withDataSourceTyp return this; } - public DestinationDatabricksDataSourceRecommendedManagedTables(@JsonProperty("data_source_type") DestinationDatabricksDataSourceRecommendedManagedTablesDataSourceTypeEnum dataSourceType) { - this.dataSourceType = dataSourceType; + this.dataSourceType = dataSourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDynamodb.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDynamodb.java index 040e92363..c987784f9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationDynamodb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationDynamodb.java @@ -70,12 +70,11 @@ public DestinationDynamodb withSecretAccessKey(String secretAccessKey) { return this; } - public DestinationDynamodb(@JsonProperty("access_key_id") String accessKeyId, @JsonProperty("destinationType") DestinationDynamodbDynamodbEnum destinationType, @JsonProperty("dynamodb_region") DestinationDynamodbDynamoDBRegionEnum dynamodbRegion, @JsonProperty("dynamodb_table_name_prefix") String dynamodbTableNamePrefix, @JsonProperty("secret_access_key") String secretAccessKey) { - this.accessKeyId = accessKeyId; -this.destinationType = destinationType; -this.dynamodbRegion = dynamodbRegion; -this.dynamodbTableNamePrefix = dynamodbTableNamePrefix; -this.secretAccessKey = secretAccessKey; + this.accessKeyId = accessKeyId; + this.destinationType = destinationType; + this.dynamodbRegion = dynamodbRegion; + this.dynamodbTableNamePrefix = dynamodbTableNamePrefix; + this.secretAccessKey = secretAccessKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearch.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearch.java index 4304a9011..f338b1146 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearch.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearch.java @@ -62,9 +62,8 @@ public DestinationElasticsearch withUpsert(Boolean upsert) { return this; } - public DestinationElasticsearch(@JsonProperty("destinationType") DestinationElasticsearchElasticsearchEnum destinationType, @JsonProperty("endpoint") String endpoint) { - this.destinationType = destinationType; -this.endpoint = endpoint; + this.destinationType = destinationType; + this.endpoint = endpoint; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodApiKeySecret.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodApiKeySecret.java index 9fcb2dbad..e74f6ca86 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodApiKeySecret.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodApiKeySecret.java @@ -37,10 +37,9 @@ public DestinationElasticsearchAuthenticationMethodApiKeySecret withMethod(Desti return this; } - public DestinationElasticsearchAuthenticationMethodApiKeySecret(@JsonProperty("apiKeyId") String apiKeyId, @JsonProperty("apiKeySecret") String apiKeySecret, @JsonProperty("method") DestinationElasticsearchAuthenticationMethodApiKeySecretMethodEnum method) { - this.apiKeyId = apiKeyId; -this.apiKeySecret = apiKeySecret; -this.method = method; + this.apiKeyId = apiKeyId; + this.apiKeySecret = apiKeySecret; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodUsernamePassword.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodUsernamePassword.java index 6ce354ccb..6be52d7fd 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodUsernamePassword.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationElasticsearchAuthenticationMethodUsernamePassword.java @@ -37,10 +37,9 @@ public DestinationElasticsearchAuthenticationMethodUsernamePassword withUsername return this; } - public DestinationElasticsearchAuthenticationMethodUsernamePassword(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("method") DestinationElasticsearchAuthenticationMethodUsernamePasswordMethodEnum method) { - this.username = username; -this.password = password; -this.method = method; + this.username = username; + this.password = password; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirebolt.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirebolt.java index 413ef6d21..be8be0b07 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirebolt.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirebolt.java @@ -93,11 +93,10 @@ public DestinationFirebolt withUsername(String username) { return this; } - public DestinationFirebolt(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("database") String database, @JsonProperty("destinationType") DestinationFireboltFireboltEnum destinationType) { - this.username = username; -this.password = password; -this.database = database; -this.destinationType = destinationType; + this.username = username; + this.password = password; + this.database = database; + this.destinationType = destinationType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodExternalTableViaS3.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodExternalTableViaS3.java index 1c9e97c24..0456bf730 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodExternalTableViaS3.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodExternalTableViaS3.java @@ -57,12 +57,11 @@ public DestinationFireboltLoadingMethodExternalTableViaS3 withS3Region(String s3 return this; } - public DestinationFireboltLoadingMethodExternalTableViaS3(@JsonProperty("aws_key_id") String awsKeyId, @JsonProperty("aws_key_secret") String awsKeySecret, @JsonProperty("method") DestinationFireboltLoadingMethodExternalTableViaS3MethodEnum method, @JsonProperty("s3_bucket") String s3Bucket, @JsonProperty("s3_region") String s3Region) { - this.awsKeyId = awsKeyId; -this.awsKeySecret = awsKeySecret; -this.method = method; -this.s3Bucket = s3Bucket; -this.s3Region = s3Region; + this.awsKeyId = awsKeyId; + this.awsKeySecret = awsKeySecret; + this.method = method; + this.s3Bucket = s3Bucket; + this.s3Region = s3Region; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodSQLInserts.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodSQLInserts.java index c557f09b2..e6cd50b84 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodSQLInserts.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFireboltLoadingMethodSQLInserts.java @@ -17,8 +17,7 @@ public DestinationFireboltLoadingMethodSQLInserts withMethod(DestinationFirebolt return this; } - public DestinationFireboltLoadingMethodSQLInserts(@JsonProperty("method") DestinationFireboltLoadingMethodSQLInsertsMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirestore.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirestore.java index ece036a21..257aa9e36 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirestore.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationFirestore.java @@ -40,9 +40,8 @@ public DestinationFirestore withProjectId(String projectId) { return this; } - public DestinationFirestore(@JsonProperty("destinationType") DestinationFirestoreFirestoreEnum destinationType, @JsonProperty("project_id") String projectId) { - this.destinationType = destinationType; -this.projectId = projectId; + this.destinationType = destinationType; + this.projectId = projectId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcs.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcs.java index 314a504bc..e869e657c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcs.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcs.java @@ -70,12 +70,11 @@ public DestinationGcs withGcsBucketRegion(DestinationGCSGCSBucketRegionEnum gcsB return this; } - public DestinationGcs(@JsonProperty("credential") Object credential, @JsonProperty("destinationType") DestinationGcsGcsEnum destinationType, @JsonProperty("format") Object format, @JsonProperty("gcs_bucket_name") String gcsBucketName, @JsonProperty("gcs_bucket_path") String gcsBucketPath) { - this.credential = credential; -this.destinationType = destinationType; -this.format = format; -this.gcsBucketName = gcsBucketName; -this.gcsBucketPath = gcsBucketPath; + this.credential = credential; + this.destinationType = destinationType; + this.format = format; + this.gcsBucketName = gcsBucketName; + this.gcsBucketPath = gcsBucketPath; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsCredentialHMACKey.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsCredentialHMACKey.java index f24381934..5968f9450 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsCredentialHMACKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsCredentialHMACKey.java @@ -37,10 +37,9 @@ public DestinationGcsCredentialHMACKey withHmacKeySecret(String hmacKeySecret) { return this; } - public DestinationGcsCredentialHMACKey(@JsonProperty("credential_type") DestinationGcsCredentialHMACKeyCredentialTypeEnum credentialType, @JsonProperty("hmac_key_access_id") String hmacKeyAccessId, @JsonProperty("hmac_key_secret") String hmacKeySecret) { - this.credentialType = credentialType; -this.hmacKeyAccessId = hmacKeyAccessId; -this.hmacKeySecret = hmacKeySecret; + this.credentialType = credentialType; + this.hmacKeyAccessId = hmacKeyAccessId; + this.hmacKeySecret = hmacKeySecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvro.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvro.java index 65b8850f4..10e7778b3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvro.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvro.java @@ -27,9 +27,8 @@ public DestinationGcsFormatAvroApacheAvro withFormatType(DestinationGcsFormatAvr return this; } - public DestinationGcsFormatAvroApacheAvro(@JsonProperty("compression_codec") Object compressionCodec, @JsonProperty("format_type") DestinationGcsFormatAvroApacheAvroFormatTypeEnum formatType) { - this.compressionCodec = compressionCodec; -this.formatType = formatType; + this.compressionCodec = compressionCodec; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2.java index de418afec..568e5a1ee 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2.java @@ -17,8 +17,7 @@ public DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2 withCodec(Destina return this; } - public DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2(@JsonProperty("codec") DestinationGcsFormatAvroApacheAvroCompressionCodecBzip2CodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate.java index 21d17c7d8..505aaad5c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate.java @@ -30,8 +30,7 @@ public DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate withCompression return this; } - public DestinationGcsFormatAvroApacheAvroCompressionCodecDeflate(@JsonProperty("codec") DestinationGcsFormatAvroApacheAvroCompressionCodecDeflateCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression.java index 005a5e7a2..c1eb2a7c4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression.java @@ -17,8 +17,7 @@ public DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression withCodec return this; } - public DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompression(@JsonProperty("codec") DestinationGcsFormatAvroApacheAvroCompressionCodecNoCompressionCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy.java index f1ab6d89b..eb4041292 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy.java @@ -17,8 +17,7 @@ public DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy withCodec(Destin return this; } - public DestinationGcsFormatAvroApacheAvroCompressionCodecSnappy(@JsonProperty("codec") DestinationGcsFormatAvroApacheAvroCompressionCodecSnappyCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecXz.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecXz.java index 5c959a1e4..6beb1db34 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecXz.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecXz.java @@ -30,8 +30,7 @@ public DestinationGcsFormatAvroApacheAvroCompressionCodecXz withCompressionLevel return this; } - public DestinationGcsFormatAvroApacheAvroCompressionCodecXz(@JsonProperty("codec") DestinationGcsFormatAvroApacheAvroCompressionCodecXzCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard.java index 5f4b6807d..9c22517c7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard.java @@ -41,8 +41,7 @@ public DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard withIncludeCh return this; } - public DestinationGcsFormatAvroApacheAvroCompressionCodecZstandard(@JsonProperty("codec") DestinationGcsFormatAvroApacheAvroCompressionCodecZstandardCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValues.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValues.java index a57e8d1f6..53e035835 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValues.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValues.java @@ -41,8 +41,7 @@ public DestinationGcsFormatCSVCommaSeparatedValues withFormatType(DestinationGcs return this; } - public DestinationGcsFormatCSVCommaSeparatedValues(@JsonProperty("format_type") DestinationGcsFormatCSVCommaSeparatedValuesFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP.java index cd924ec09..55515e229 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP.java @@ -20,6 +20,5 @@ public DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP withCompressio return this; } - public DestinationGcsFormatCSVCommaSeparatedValuesCompressionGZIP(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression.java index 7f0cc5886..fc202afb5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression.java @@ -20,6 +20,5 @@ public DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression withC return this; } - public DestinationGcsFormatCSVCommaSeparatedValuesCompressionNoCompression(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSON.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSON.java index 41ce98f83..60c0c9e08 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSON.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSON.java @@ -30,8 +30,7 @@ public DestinationGcsFormatJSONLinesNewlineDelimitedJSON withFormatType(Destinat return this; } - public DestinationGcsFormatJSONLinesNewlineDelimitedJSON(@JsonProperty("format_type") DestinationGcsFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java index 6b40d1965..bc0131c11 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java @@ -20,6 +20,5 @@ public DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP withComp return this; } - public DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionGZIP(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java index f62ddba77..e54be1d8d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java @@ -20,6 +20,5 @@ public DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression return this; } - public DestinationGcsFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatParquetColumnarStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatParquetColumnarStorage.java index 90b0c2ee4..380a9cc45 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatParquetColumnarStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGcsFormatParquetColumnarStorage.java @@ -85,8 +85,7 @@ public DestinationGcsFormatParquetColumnarStorage withPageSizeKb(Long pageSizeKb return this; } - public DestinationGcsFormatParquetColumnarStorage(@JsonProperty("format_type") DestinationGcsFormatParquetColumnarStorageFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheets.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheets.java index ac46e1e60..8042da67c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheets.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheets.java @@ -37,10 +37,9 @@ public DestinationGoogleSheets withSpreadsheetId(String spreadsheetId) { return this; } - public DestinationGoogleSheets(@JsonProperty("credentials") DestinationGoogleSheetsAuthenticationViaGoogleOAuth credentials, @JsonProperty("destinationType") DestinationGoogleSheetsGoogleSheetsEnum destinationType, @JsonProperty("spreadsheet_id") String spreadsheetId) { - this.credentials = credentials; -this.destinationType = destinationType; -this.spreadsheetId = spreadsheetId; + this.credentials = credentials; + this.destinationType = destinationType; + this.spreadsheetId = spreadsheetId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheetsAuthenticationViaGoogleOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheetsAuthenticationViaGoogleOAuth.java index 03fa980ac..017d60514 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheetsAuthenticationViaGoogleOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationGoogleSheetsAuthenticationViaGoogleOAuth.java @@ -40,10 +40,9 @@ public DestinationGoogleSheetsAuthenticationViaGoogleOAuth withRefreshToken(Stri return this; } - public DestinationGoogleSheetsAuthenticationViaGoogleOAuth(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationKeen.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationKeen.java index 6d732cdff..df0db88d6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationKeen.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationKeen.java @@ -50,10 +50,9 @@ public DestinationKeen withProjectId(String projectId) { return this; } - public DestinationKeen(@JsonProperty("api_key") String apiKey, @JsonProperty("destinationType") DestinationKeenKeenEnum destinationType, @JsonProperty("project_id") String projectId) { - this.apiKey = apiKey; -this.destinationType = destinationType; -this.projectId = projectId; + this.apiKey = apiKey; + this.destinationType = destinationType; + this.projectId = projectId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationKinesis.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationKinesis.java index 986e9aeea..0e8349c89 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationKinesis.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationKinesis.java @@ -77,14 +77,13 @@ public DestinationKinesis withShardCount(Long shardCount) { return this; } - public DestinationKinesis(@JsonProperty("accessKey") String accessKey, @JsonProperty("bufferSize") Long bufferSize, @JsonProperty("destinationType") DestinationKinesisKinesisEnum destinationType, @JsonProperty("endpoint") String endpoint, @JsonProperty("privateKey") String privateKey, @JsonProperty("region") String region, @JsonProperty("shardCount") Long shardCount) { - this.accessKey = accessKey; -this.bufferSize = bufferSize; -this.destinationType = destinationType; -this.endpoint = endpoint; -this.privateKey = privateKey; -this.region = region; -this.shardCount = shardCount; + this.accessKey = accessKey; + this.bufferSize = bufferSize; + this.destinationType = destinationType; + this.endpoint = endpoint; + this.privateKey = privateKey; + this.region = region; + this.shardCount = shardCount; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstore.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstore.java index 1a9979773..a4f9cb12b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstore.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstore.java @@ -92,12 +92,11 @@ public DestinationMariadbColumnstore withUsername(String username) { return this; } - public DestinationMariadbColumnstore(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationMariadbColumnstoreMariadbColumnstoreEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("username") String username) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.username = username; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodNoTunnel.java index 2f43c4459..e50c71624 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationMariadbColumnstoreTunnelMethodNoTunnel withTunnelMethod(Destin return this; } - public DestinationMariadbColumnstoreTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationMariadbColumnstoreTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication.java index 2b9ee7068..1bb9c38e1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication withTunne return this; } - public DestinationMariadbColumnstoreTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMariadbColumnstoreTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication.java index aa0579700..10177cdd9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication withTunnelU return this; } - public DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMariadbColumnstoreTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMeilisearch.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMeilisearch.java index beac1f718..77cc5c24d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMeilisearch.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMeilisearch.java @@ -40,9 +40,8 @@ public DestinationMeilisearch withHost(String host) { return this; } - public DestinationMeilisearch(@JsonProperty("destinationType") DestinationMeilisearchMeilisearchEnum destinationType, @JsonProperty("host") String host) { - this.destinationType = destinationType; -this.host = host; + this.destinationType = destinationType; + this.host = host; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodb.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodb.java index 499f36175..cc54373c0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodb.java @@ -61,10 +61,9 @@ public DestinationMongodb withTunnelMethod(Object tunnelMethod) { return this; } - public DestinationMongodb(@JsonProperty("auth_type") Object authType, @JsonProperty("database") String database, @JsonProperty("destinationType") DestinationMongodbMongodbEnum destinationType) { - this.authType = authType; -this.database = database; -this.destinationType = destinationType; + this.authType = authType; + this.database = database; + this.destinationType = destinationType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeLoginPassword.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeLoginPassword.java index 424608072..a3c3a2cd0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeLoginPassword.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeLoginPassword.java @@ -37,10 +37,9 @@ public DestinationMongodbAuthTypeLoginPassword withUsername(String username) { return this; } - public DestinationMongodbAuthTypeLoginPassword(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("authorization") DestinationMongodbAuthTypeLoginPasswordAuthorizationEnum authorization) { - this.username = username; -this.password = password; -this.authorization = authorization; + this.username = username; + this.password = password; + this.authorization = authorization; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeNone.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeNone.java index ae4efaa96..89fd431cc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeNone.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbAuthTypeNone.java @@ -17,8 +17,7 @@ public DestinationMongodbAuthTypeNone withAuthorization(DestinationMongodbAuthTy return this; } - public DestinationMongodbAuthTypeNone(@JsonProperty("authorization") DestinationMongodbAuthTypeNoneAuthorizationEnum authorization) { - this.authorization = authorization; + this.authorization = authorization; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeMongoDBAtlas.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeMongoDBAtlas.java index 5e5b0f65f..b3beb23ee 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeMongoDBAtlas.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeMongoDBAtlas.java @@ -27,9 +27,8 @@ public DestinationMongodbInstanceTypeMongoDBAtlas withInstance(DestinationMongod return this; } - public DestinationMongodbInstanceTypeMongoDBAtlas(@JsonProperty("cluster_url") String clusterUrl, @JsonProperty("instance") DestinationMongodbInstanceTypeMongoDBAtlasInstanceEnum instance) { - this.clusterUrl = clusterUrl; -this.instance = instance; + this.clusterUrl = clusterUrl; + this.instance = instance; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeReplicaSet.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeReplicaSet.java index 65a6c33b0..f2161a5c5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeReplicaSet.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeReplicaSet.java @@ -40,9 +40,8 @@ public DestinationMongodbInstanceTypeReplicaSet withServerAddresses(String serve return this; } - public DestinationMongodbInstanceTypeReplicaSet(@JsonProperty("instance") DestinationMongodbInstanceTypeReplicaSetInstanceEnum instance, @JsonProperty("server_addresses") String serverAddresses) { - this.instance = instance; -this.serverAddresses = serverAddresses; + this.instance = instance; + this.serverAddresses = serverAddresses; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeStandaloneMongoDbInstance.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeStandaloneMongoDbInstance.java index 4fa8a5b93..d1cbe3340 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeStandaloneMongoDbInstance.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbInstanceTypeStandaloneMongoDbInstance.java @@ -37,10 +37,9 @@ public DestinationMongodbInstanceTypeStandaloneMongoDbInstance withPort(Long por return this; } - public DestinationMongodbInstanceTypeStandaloneMongoDbInstance(@JsonProperty("host") String host, @JsonProperty("instance") DestinationMongodbInstanceTypeStandaloneMongoDbInstanceInstanceEnum instance, @JsonProperty("port") Long port) { - this.host = host; -this.instance = instance; -this.port = port; + this.host = host; + this.instance = instance; + this.port = port; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodNoTunnel.java index 8bc058f75..95723a213 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationMongodbTunnelMethodNoTunnel withTunnelMethod(DestinationMongod return this; } - public DestinationMongodbTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationMongodbTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodPasswordAuthentication.java index adbd7a8e0..a302ca042 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationMongodbTunnelMethodPasswordAuthentication withTunnelUserPasswo return this; } - public DestinationMongodbTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMongodbTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodSSHKeyAuthentication.java index e1fa54448..b96840864 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMongodbTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationMongodbTunnelMethodSSHKeyAuthentication withTunnelUser(String return this; } - public DestinationMongodbTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMongodbTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssql.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssql.java index 2d2222c32..d82714413 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssql.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssql.java @@ -113,13 +113,12 @@ public DestinationMssql withUsername(String username) { return this; } - public DestinationMssql(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationMssqlMssqlEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("schema") String schema, @JsonProperty("username") String username) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.schema = schema; -this.username = username; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.schema = schema; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedTrustServerCertificate.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedTrustServerCertificate.java index 3477282e8..6a3bf5839 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedTrustServerCertificate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedTrustServerCertificate.java @@ -17,8 +17,7 @@ public DestinationMssqlSslMethodEncryptedTrustServerCertificate withSslMethod(De return this; } - public DestinationMssqlSslMethodEncryptedTrustServerCertificate(@JsonProperty("ssl_method") DestinationMssqlSslMethodEncryptedTrustServerCertificateSslMethodEnum sslMethod) { - this.sslMethod = sslMethod; + this.sslMethod = sslMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedVerifyCertificate.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedVerifyCertificate.java index fc9a49743..698e7b4b6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedVerifyCertificate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlSslMethodEncryptedVerifyCertificate.java @@ -30,8 +30,7 @@ public DestinationMssqlSslMethodEncryptedVerifyCertificate withSslMethod(Destina return this; } - public DestinationMssqlSslMethodEncryptedVerifyCertificate(@JsonProperty("ssl_method") DestinationMssqlSslMethodEncryptedVerifyCertificateSslMethodEnum sslMethod) { - this.sslMethod = sslMethod; + this.sslMethod = sslMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodNoTunnel.java index 17a65409e..9a3ed35c5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationMssqlTunnelMethodNoTunnel withTunnelMethod(DestinationMssqlTun return this; } - public DestinationMssqlTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationMssqlTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodPasswordAuthentication.java index 95e8949a3..cac5728af 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationMssqlTunnelMethodPasswordAuthentication withTunnelUserPassword return this; } - public DestinationMssqlTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMssqlTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodSSHKeyAuthentication.java index 993c4de6b..d0df9f10a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMssqlTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationMssqlTunnelMethodSSHKeyAuthentication withTunnelUser(String tu return this; } - public DestinationMssqlTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMssqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysql.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysql.java index 03305ff84..e85dc5013 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysql.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysql.java @@ -92,12 +92,11 @@ public DestinationMysql withUsername(String username) { return this; } - public DestinationMysql(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationMysqlMysqlEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("username") String username) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.username = username; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodNoTunnel.java index defc46e01..8fa234cb5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationMysqlTunnelMethodNoTunnel withTunnelMethod(DestinationMysqlTun return this; } - public DestinationMysqlTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationMysqlTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodPasswordAuthentication.java index f7c23e273..e9d165255 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationMysqlTunnelMethodPasswordAuthentication withTunnelUserPassword return this; } - public DestinationMysqlTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMysqlTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodSSHKeyAuthentication.java index 0843277b5..52ecfd5a5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationMysqlTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationMysqlTunnelMethodSSHKeyAuthentication withTunnelUser(String tu return this; } - public DestinationMysqlTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationMysqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracle.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracle.java index 766d58e21..c0de9ff57 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracle.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracle.java @@ -103,12 +103,11 @@ public DestinationOracle withUsername(String username) { return this; } - public DestinationOracle(@JsonProperty("destinationType") DestinationOracleOracleEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sid") String sid, @JsonProperty("username") String username) { - this.destinationType = destinationType; -this.host = host; -this.port = port; -this.sid = sid; -this.username = username; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.sid = sid; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodNoTunnel.java index 14105622a..5ffd69445 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationOracleTunnelMethodNoTunnel withTunnelMethod(DestinationOracleT return this; } - public DestinationOracleTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationOracleTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodPasswordAuthentication.java index f3c398066..c06fc83d4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationOracleTunnelMethodPasswordAuthentication withTunnelUserPasswor return this; } - public DestinationOracleTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationOracleTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodSSHKeyAuthentication.java index b996b1afb..0c19fe999 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationOracleTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationOracleTunnelMethodSSHKeyAuthentication withTunnelUser(String t return this; } - public DestinationOracleTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationOracleTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgres.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgres.java index 3b46c7060..ebe3b0b52 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgres.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgres.java @@ -120,13 +120,12 @@ public DestinationPostgres withUsername(String username) { return this; } - public DestinationPostgres(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationPostgresPostgresEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("schema") String schema, @JsonProperty("username") String username) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.schema = schema; -this.username = username; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.schema = schema; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeAllow.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeAllow.java index e9aabffc4..542c6bfdd 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeAllow.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeAllow.java @@ -17,8 +17,7 @@ public DestinationPostgresSslModeAllow withMode(DestinationPostgresSslModeAllowM return this; } - public DestinationPostgresSslModeAllow(@JsonProperty("mode") DestinationPostgresSslModeAllowModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeDisable.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeDisable.java index b6d73bf7e..4275bc854 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeDisable.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeDisable.java @@ -17,8 +17,7 @@ public DestinationPostgresSslModeDisable withMode(DestinationPostgresSslModeDisa return this; } - public DestinationPostgresSslModeDisable(@JsonProperty("mode") DestinationPostgresSslModeDisableModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModePrefer.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModePrefer.java index a1d26ae31..0df2f54aa 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModePrefer.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModePrefer.java @@ -17,8 +17,7 @@ public DestinationPostgresSslModePrefer withMode(DestinationPostgresSslModePrefe return this; } - public DestinationPostgresSslModePrefer(@JsonProperty("mode") DestinationPostgresSslModePreferModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeRequire.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeRequire.java index ffa30a28c..6e42992fc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeRequire.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeRequire.java @@ -17,8 +17,7 @@ public DestinationPostgresSslModeRequire withMode(DestinationPostgresSslModeRequ return this; } - public DestinationPostgresSslModeRequire(@JsonProperty("mode") DestinationPostgresSslModeRequireModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyCa.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyCa.java index 16a3d74db..2e2ad7fae 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyCa.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyCa.java @@ -40,9 +40,8 @@ public DestinationPostgresSslModeVerifyCa withMode(DestinationPostgresSslModeVer return this; } - public DestinationPostgresSslModeVerifyCa(@JsonProperty("ca_certificate") String caCertificate, @JsonProperty("mode") DestinationPostgresSslModeVerifyCaModeEnum mode) { - this.caCertificate = caCertificate; -this.mode = mode; + this.caCertificate = caCertificate; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyFull.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyFull.java index 0f545e15f..133c42265 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyFull.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresSslModeVerifyFull.java @@ -60,11 +60,10 @@ public DestinationPostgresSslModeVerifyFull withMode(DestinationPostgresSslModeV return this; } - public DestinationPostgresSslModeVerifyFull(@JsonProperty("ca_certificate") String caCertificate, @JsonProperty("client_certificate") String clientCertificate, @JsonProperty("client_key") String clientKey, @JsonProperty("mode") DestinationPostgresSslModeVerifyFullModeEnum mode) { - this.caCertificate = caCertificate; -this.clientCertificate = clientCertificate; -this.clientKey = clientKey; -this.mode = mode; + this.caCertificate = caCertificate; + this.clientCertificate = clientCertificate; + this.clientKey = clientKey; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodNoTunnel.java index d4c83af8a..58224101b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationPostgresTunnelMethodNoTunnel withTunnelMethod(DestinationPostg return this; } - public DestinationPostgresTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationPostgresTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodPasswordAuthentication.java index ff15b05b8..fa78ce0ce 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationPostgresTunnelMethodPasswordAuthentication withTunnelUserPassw return this; } - public DestinationPostgresTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationPostgresTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodSSHKeyAuthentication.java index 66761f5e4..146615228 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPostgresTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationPostgresTunnelMethodSSHKeyAuthentication withTunnelUser(String return this; } - public DestinationPostgresTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationPostgresTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPubsub.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPubsub.java index 9616e11a8..b97885231 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPubsub.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPubsub.java @@ -102,13 +102,12 @@ public DestinationPubsub withTopicId(String topicId) { return this; } - public DestinationPubsub(@JsonProperty("batching_enabled") Boolean batchingEnabled, @JsonProperty("credentials_json") String credentialsJson, @JsonProperty("destinationType") DestinationPubsubPubsubEnum destinationType, @JsonProperty("ordering_enabled") Boolean orderingEnabled, @JsonProperty("project_id") String projectId, @JsonProperty("topic_id") String topicId) { - this.batchingEnabled = batchingEnabled; -this.credentialsJson = credentialsJson; -this.destinationType = destinationType; -this.orderingEnabled = orderingEnabled; -this.projectId = projectId; -this.topicId = topicId; + this.batchingEnabled = batchingEnabled; + this.credentialsJson = credentialsJson; + this.destinationType = destinationType; + this.orderingEnabled = orderingEnabled; + this.projectId = projectId; + this.topicId = topicId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPulsar.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPulsar.java index 65acb67fc..9bf982282 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationPulsar.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationPulsar.java @@ -192,22 +192,21 @@ public DestinationPulsar withUseTls(Boolean useTls) { return this; } - public DestinationPulsar(@JsonProperty("batching_enabled") Boolean batchingEnabled, @JsonProperty("batching_max_messages") Long batchingMaxMessages, @JsonProperty("batching_max_publish_delay") Long batchingMaxPublishDelay, @JsonProperty("block_if_queue_full") Boolean blockIfQueueFull, @JsonProperty("brokers") String brokers, @JsonProperty("compression_type") DestinationPulsarCompressionTypeEnum compressionType, @JsonProperty("destinationType") DestinationPulsarPulsarEnum destinationType, @JsonProperty("max_pending_messages") Long maxPendingMessages, @JsonProperty("max_pending_messages_across_partitions") Long maxPendingMessagesAcrossPartitions, @JsonProperty("send_timeout_ms") Long sendTimeoutMs, @JsonProperty("topic_namespace") String topicNamespace, @JsonProperty("topic_pattern") String topicPattern, @JsonProperty("topic_tenant") String topicTenant, @JsonProperty("topic_type") DestinationPulsarTopicTypeEnum topicType, @JsonProperty("use_tls") Boolean useTls) { - this.batchingEnabled = batchingEnabled; -this.batchingMaxMessages = batchingMaxMessages; -this.batchingMaxPublishDelay = batchingMaxPublishDelay; -this.blockIfQueueFull = blockIfQueueFull; -this.brokers = brokers; -this.compressionType = compressionType; -this.destinationType = destinationType; -this.maxPendingMessages = maxPendingMessages; -this.maxPendingMessagesAcrossPartitions = maxPendingMessagesAcrossPartitions; -this.sendTimeoutMs = sendTimeoutMs; -this.topicNamespace = topicNamespace; -this.topicPattern = topicPattern; -this.topicTenant = topicTenant; -this.topicType = topicType; -this.useTls = useTls; + this.batchingEnabled = batchingEnabled; + this.batchingMaxMessages = batchingMaxMessages; + this.batchingMaxPublishDelay = batchingMaxPublishDelay; + this.blockIfQueueFull = blockIfQueueFull; + this.brokers = brokers; + this.compressionType = compressionType; + this.destinationType = destinationType; + this.maxPendingMessages = maxPendingMessages; + this.maxPendingMessagesAcrossPartitions = maxPendingMessagesAcrossPartitions; + this.sendTimeoutMs = sendTimeoutMs; + this.topicNamespace = topicNamespace; + this.topicPattern = topicPattern; + this.topicTenant = topicTenant; + this.topicType = topicType; + this.useTls = useTls; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRabbitmq.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRabbitmq.java index 6e13c00c2..018788418 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRabbitmq.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRabbitmq.java @@ -105,10 +105,9 @@ public DestinationRabbitmq withVirtualHost(String virtualHost) { return this; } - public DestinationRabbitmq(@JsonProperty("destinationType") DestinationRabbitmqRabbitmqEnum destinationType, @JsonProperty("host") String host, @JsonProperty("routing_key") String routingKey) { - this.destinationType = destinationType; -this.host = host; -this.routingKey = routingKey; + this.destinationType = destinationType; + this.host = host; + this.routingKey = routingKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedis.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedis.java index b68a4836b..b49b3a33d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedis.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedis.java @@ -104,12 +104,11 @@ public DestinationRedis withUsername(String username) { return this; } - public DestinationRedis(@JsonProperty("cache_type") DestinationRedisCacheTypeEnum cacheType, @JsonProperty("destinationType") DestinationRedisRedisEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("username") String username) { - this.cacheType = cacheType; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.username = username; + this.cacheType = cacheType; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeDisable.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeDisable.java index 885d59869..8649fbd0a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeDisable.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeDisable.java @@ -17,8 +17,7 @@ public DestinationRedisSslModeDisable withMode(DestinationRedisSslModeDisableMod return this; } - public DestinationRedisSslModeDisable(@JsonProperty("mode") DestinationRedisSslModeDisableModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeVerifyFull.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeVerifyFull.java index 1e25e70c8..ea50be704 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeVerifyFull.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisSslModeVerifyFull.java @@ -60,11 +60,10 @@ public DestinationRedisSslModeVerifyFull withMode(DestinationRedisSslModeVerifyF return this; } - public DestinationRedisSslModeVerifyFull(@JsonProperty("ca_certificate") String caCertificate, @JsonProperty("client_certificate") String clientCertificate, @JsonProperty("client_key") String clientKey, @JsonProperty("mode") DestinationRedisSslModeVerifyFullModeEnum mode) { - this.caCertificate = caCertificate; -this.clientCertificate = clientCertificate; -this.clientKey = clientKey; -this.mode = mode; + this.caCertificate = caCertificate; + this.clientCertificate = clientCertificate; + this.clientKey = clientKey; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodNoTunnel.java index da48a05ba..08005acf9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationRedisTunnelMethodNoTunnel withTunnelMethod(DestinationRedisTun return this; } - public DestinationRedisTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationRedisTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodPasswordAuthentication.java index b3a4a7891..b058f502a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationRedisTunnelMethodPasswordAuthentication withTunnelUserPassword return this; } - public DestinationRedisTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationRedisTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodSSHKeyAuthentication.java index 381d751a6..1cbc2fc66 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedisTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationRedisTunnelMethodSSHKeyAuthentication withTunnelUser(String tu return this; } - public DestinationRedisTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationRedisTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshift.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshift.java index c27a69e94..95b995f3d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshift.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshift.java @@ -112,14 +112,13 @@ public DestinationRedshift withUsername(String username) { return this; } - public DestinationRedshift(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("database") String database, @JsonProperty("destinationType") DestinationRedshiftRedshiftEnum destinationType, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("schema") String schema) { - this.username = username; -this.password = password; -this.database = database; -this.destinationType = destinationType; -this.host = host; -this.port = port; -this.schema = schema; + this.username = username; + this.password = password; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.port = port; + this.schema = schema; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodNoTunnel.java index 30570c434..a69b41aad 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public DestinationRedshiftTunnelMethodNoTunnel withTunnelMethod(DestinationRedsh return this; } - public DestinationRedshiftTunnelMethodNoTunnel(@JsonProperty("tunnel_method") DestinationRedshiftTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodPasswordAuthentication.java index 1a34923bb..b077903e2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public DestinationRedshiftTunnelMethodPasswordAuthentication withTunnelUserPassw return this; } - public DestinationRedshiftTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationRedshiftTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodSSHKeyAuthentication.java index e804b5b03..4c5de84b9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public DestinationRedshiftTunnelMethodSSHKeyAuthentication withTunnelUser(String return this; } - public DestinationRedshiftTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") DestinationRedshiftTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3Staging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3Staging.java index 2178b3501..8c6ae1a43 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3Staging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3Staging.java @@ -114,12 +114,11 @@ public DestinationRedshiftUploadingMethodS3Staging withSecretAccessKey(String se return this; } - public DestinationRedshiftUploadingMethodS3Staging(@JsonProperty("access_key_id") String accessKeyId, @JsonProperty("method") DestinationRedshiftUploadingMethodS3StagingMethodEnum method, @JsonProperty("s3_bucket_name") String s3BucketName, @JsonProperty("s3_bucket_region") DestinationRedshiftUploadingMethodS3StagingS3BucketRegionEnum s3BucketRegion, @JsonProperty("secret_access_key") String secretAccessKey) { - this.accessKeyId = accessKeyId; -this.method = method; -this.s3BucketName = s3BucketName; -this.s3BucketRegion = s3BucketRegion; -this.secretAccessKey = secretAccessKey; + this.accessKeyId = accessKeyId; + this.method = method; + this.s3BucketName = s3BucketName; + this.s3BucketRegion = s3BucketRegion; + this.secretAccessKey = secretAccessKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryption.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryption.java index d322945ee..afdfd5ec5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryption.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryption.java @@ -30,8 +30,7 @@ public DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryp return this; } - public DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryption(@JsonProperty("encryption_type") DestinationRedshiftUploadingMethodS3StagingEncryptionAESCBCEnvelopeEncryptionEncryptionTypeEnum encryptionType) { - this.encryptionType = encryptionType; + this.encryptionType = encryptionType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption.java index 7f1e92220..4e87ca238 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption.java @@ -17,8 +17,7 @@ public DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption withEnc return this; } - public DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryption(@JsonProperty("encryption_type") DestinationRedshiftUploadingMethodS3StagingEncryptionNoEncryptionEncryptionTypeEnum encryptionType) { - this.encryptionType = encryptionType; + this.encryptionType = encryptionType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodStandard.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodStandard.java index a0da8d8c7..eabfd5fb0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodStandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRedshiftUploadingMethodStandard.java @@ -17,8 +17,7 @@ public DestinationRedshiftUploadingMethodStandard withMethod(DestinationRedshift return this; } - public DestinationRedshiftUploadingMethodStandard(@JsonProperty("method") DestinationRedshiftUploadingMethodStandardMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationResponse.java index 27c8d410f..ce49fb3d4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationResponse.java @@ -38,11 +38,10 @@ public DestinationResponse withWorkspaceId(String workspaceId) { return this; } - public DestinationResponse(@JsonProperty("destinationId") String destinationId, @JsonProperty("destinationType") String destinationType, @JsonProperty("name") String name, @JsonProperty("workspaceId") String workspaceId) { - this.destinationId = destinationId; -this.destinationType = destinationType; -this.name = name; -this.workspaceId = workspaceId; + this.destinationId = destinationId; + this.destinationType = destinationType; + this.name = name; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRockset.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRockset.java index 5e543cc5a..b46e5c0e9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationRockset.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationRockset.java @@ -50,10 +50,9 @@ public DestinationRockset withWorkspace(String workspace) { return this; } - public DestinationRockset(@JsonProperty("api_key") String apiKey, @JsonProperty("destinationType") DestinationRocksetRocksetEnum destinationType, @JsonProperty("workspace") String workspace) { - this.apiKey = apiKey; -this.destinationType = destinationType; -this.workspace = workspace; + this.apiKey = apiKey; + this.destinationType = destinationType; + this.workspace = workspace; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3.java index 635fdd45f..5cbd04dae 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3.java @@ -114,12 +114,11 @@ public DestinationS3 withSecretAccessKey(String secretAccessKey) { return this; } - public DestinationS3(@JsonProperty("destinationType") DestinationS3S3Enum destinationType, @JsonProperty("format") Object format, @JsonProperty("s3_bucket_name") String s3BucketName, @JsonProperty("s3_bucket_path") String s3BucketPath, @JsonProperty("s3_bucket_region") DestinationS3S3BucketRegionEnum s3BucketRegion) { - this.destinationType = destinationType; -this.format = format; -this.s3BucketName = s3BucketName; -this.s3BucketPath = s3BucketPath; -this.s3BucketRegion = s3BucketRegion; + this.destinationType = destinationType; + this.format = format; + this.s3BucketName = s3BucketName; + this.s3BucketPath = s3BucketPath; + this.s3BucketRegion = s3BucketRegion; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvro.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvro.java index ceb47d645..642823a94 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvro.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvro.java @@ -27,9 +27,8 @@ public DestinationS3FormatAvroApacheAvro withFormatType(DestinationS3FormatAvroA return this; } - public DestinationS3FormatAvroApacheAvro(@JsonProperty("compression_codec") Object compressionCodec, @JsonProperty("format_type") DestinationS3FormatAvroApacheAvroFormatTypeEnum formatType) { - this.compressionCodec = compressionCodec; -this.formatType = formatType; + this.compressionCodec = compressionCodec; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecBzip2.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecBzip2.java index 1f99a6de6..1eb49605c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecBzip2.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecBzip2.java @@ -17,8 +17,7 @@ public DestinationS3FormatAvroApacheAvroCompressionCodecBzip2 withCodec(Destinat return this; } - public DestinationS3FormatAvroApacheAvroCompressionCodecBzip2(@JsonProperty("codec") DestinationS3FormatAvroApacheAvroCompressionCodecBzip2CodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecDeflate.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecDeflate.java index 0d7c5c853..bc7a39698 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecDeflate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecDeflate.java @@ -27,9 +27,8 @@ public DestinationS3FormatAvroApacheAvroCompressionCodecDeflate withCompressionL return this; } - public DestinationS3FormatAvroApacheAvroCompressionCodecDeflate(@JsonProperty("codec") DestinationS3FormatAvroApacheAvroCompressionCodecDeflateCodecEnum codec, @JsonProperty("compression_level") Long compressionLevel) { - this.codec = codec; -this.compressionLevel = compressionLevel; + this.codec = codec; + this.compressionLevel = compressionLevel; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression.java index 64ae47c65..844ffc43c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression.java @@ -17,8 +17,7 @@ public DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression withCodec( return this; } - public DestinationS3FormatAvroApacheAvroCompressionCodecNoCompression(@JsonProperty("codec") DestinationS3FormatAvroApacheAvroCompressionCodecNoCompressionCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecSnappy.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecSnappy.java index c4fb066ed..6879d6ed7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecSnappy.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecSnappy.java @@ -17,8 +17,7 @@ public DestinationS3FormatAvroApacheAvroCompressionCodecSnappy withCodec(Destina return this; } - public DestinationS3FormatAvroApacheAvroCompressionCodecSnappy(@JsonProperty("codec") DestinationS3FormatAvroApacheAvroCompressionCodecSnappyCodecEnum codec) { - this.codec = codec; + this.codec = codec; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecXz.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecXz.java index 70230262e..56398288b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecXz.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecXz.java @@ -27,9 +27,8 @@ public DestinationS3FormatAvroApacheAvroCompressionCodecXz withCompressionLevel( return this; } - public DestinationS3FormatAvroApacheAvroCompressionCodecXz(@JsonProperty("codec") DestinationS3FormatAvroApacheAvroCompressionCodecXzCodecEnum codec, @JsonProperty("compression_level") Long compressionLevel) { - this.codec = codec; -this.compressionLevel = compressionLevel; + this.codec = codec; + this.compressionLevel = compressionLevel; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecZstandard.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecZstandard.java index 448bcdee4..c269fd5a5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecZstandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatAvroApacheAvroCompressionCodecZstandard.java @@ -40,9 +40,8 @@ public DestinationS3FormatAvroApacheAvroCompressionCodecZstandard withIncludeChe return this; } - public DestinationS3FormatAvroApacheAvroCompressionCodecZstandard(@JsonProperty("codec") DestinationS3FormatAvroApacheAvroCompressionCodecZstandardCodecEnum codec, @JsonProperty("compression_level") Long compressionLevel) { - this.codec = codec; -this.compressionLevel = compressionLevel; + this.codec = codec; + this.compressionLevel = compressionLevel; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValues.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValues.java index 5a4c38d32..576818a73 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValues.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValues.java @@ -40,9 +40,8 @@ public DestinationS3FormatCSVCommaSeparatedValues withFormatType(DestinationS3Fo return this; } - public DestinationS3FormatCSVCommaSeparatedValues(@JsonProperty("flattening") DestinationS3FormatCSVCommaSeparatedValuesFlatteningEnum flattening, @JsonProperty("format_type") DestinationS3FormatCSVCommaSeparatedValuesFormatTypeEnum formatType) { - this.flattening = flattening; -this.formatType = formatType; + this.flattening = flattening; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP.java index 7a4ac91cf..a6edbe9b2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP.java @@ -20,6 +20,5 @@ public DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP withCompression return this; } - public DestinationS3FormatCSVCommaSeparatedValuesCompressionGZIP(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression.java index b154e87d7..f538cb916 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression.java @@ -20,6 +20,5 @@ public DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression withCo return this; } - public DestinationS3FormatCSVCommaSeparatedValuesCompressionNoCompression(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSON.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSON.java index ce67650c3..5d6da9109 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSON.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSON.java @@ -41,8 +41,7 @@ public DestinationS3FormatJSONLinesNewlineDelimitedJSON withFormatType(Destinati return this; } - public DestinationS3FormatJSONLinesNewlineDelimitedJSON(@JsonProperty("format_type") DestinationS3FormatJSONLinesNewlineDelimitedJSONFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java index e90df98c0..1b9d10f91 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java @@ -20,6 +20,5 @@ public DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP withCompr return this; } - public DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionGZIP(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java index 9ee3a069a..38a2e659c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java @@ -20,6 +20,5 @@ public DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression return this; } - public DestinationS3FormatJSONLinesNewlineDelimitedJSONCompressionNoCompression(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatParquetColumnarStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatParquetColumnarStorage.java index 3ede376c0..8cc146508 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatParquetColumnarStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3FormatParquetColumnarStorage.java @@ -85,8 +85,7 @@ public DestinationS3FormatParquetColumnarStorage withPageSizeKb(Long pageSizeKb) return this; } - public DestinationS3FormatParquetColumnarStorage(@JsonProperty("format_type") DestinationS3FormatParquetColumnarStorageFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3Glue.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3Glue.java index c19853334..35cdef390 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3Glue.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3Glue.java @@ -134,14 +134,13 @@ public DestinationS3Glue withSecretAccessKey(String secretAccessKey) { return this; } - public DestinationS3Glue(@JsonProperty("destinationType") DestinationS3GlueS3GlueEnum destinationType, @JsonProperty("format") Object format, @JsonProperty("glue_database") String glueDatabase, @JsonProperty("glue_serialization_library") DestinationS3GlueSerializationLibraryEnum glueSerializationLibrary, @JsonProperty("s3_bucket_name") String s3BucketName, @JsonProperty("s3_bucket_path") String s3BucketPath, @JsonProperty("s3_bucket_region") DestinationS3GlueS3BucketRegionEnum s3BucketRegion) { - this.destinationType = destinationType; -this.format = format; -this.glueDatabase = glueDatabase; -this.glueSerializationLibrary = glueSerializationLibrary; -this.s3BucketName = s3BucketName; -this.s3BucketPath = s3BucketPath; -this.s3BucketRegion = s3BucketRegion; + this.destinationType = destinationType; + this.format = format; + this.glueDatabase = glueDatabase; + this.glueSerializationLibrary = glueSerializationLibrary; + this.s3BucketName = s3BucketName; + this.s3BucketPath = s3BucketPath; + this.s3BucketRegion = s3BucketRegion; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON.java index 2a0895e0a..109986b6a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON.java @@ -41,8 +41,7 @@ public DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON withFormatType(Desti return this; } - public DestinationS3GlueFormatJSONLinesNewlineDelimitedJSON(@JsonProperty("format_type") DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java index ceb61db37..889331911 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP.java @@ -20,6 +20,5 @@ public DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP withC return this; } - public DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionGZIP(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java index e78066040..4e74e0e48 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression.java @@ -20,6 +20,5 @@ public DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompress return this; } - public DestinationS3GlueFormatJSONLinesNewlineDelimitedJSONCompressionNoCompression(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationScylla.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationScylla.java index b1c594f39..809156b42 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationScylla.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationScylla.java @@ -80,13 +80,12 @@ public DestinationScylla withUsername(String username) { return this; } - public DestinationScylla(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("address") String address, @JsonProperty("destinationType") DestinationScyllaScyllaEnum destinationType, @JsonProperty("keyspace") String keyspace, @JsonProperty("port") Long port) { - this.username = username; -this.password = password; -this.address = address; -this.destinationType = destinationType; -this.keyspace = keyspace; -this.port = port; + this.username = username; + this.password = password; + this.address = address; + this.destinationType = destinationType; + this.keyspace = keyspace; + this.port = port; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSftpJson.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSftpJson.java index 3cea3e448..98d9ccbda 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSftpJson.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSftpJson.java @@ -70,12 +70,11 @@ public DestinationSftpJson withUsername(String username) { return this; } - public DestinationSftpJson(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("destinationType") DestinationSftpJsonSftpJsonEnum destinationType, @JsonProperty("destination_path") String destinationPath, @JsonProperty("host") String host) { - this.username = username; -this.password = password; -this.destinationType = destinationType; -this.destinationPath = destinationPath; -this.host = host; + this.username = username; + this.password = password; + this.destinationType = destinationType; + this.destinationPath = destinationPath; + this.host = host; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflake.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflake.java index 9136fc02f..751a360c9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflake.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflake.java @@ -120,14 +120,13 @@ public DestinationSnowflake withWarehouse(String warehouse) { return this; } - public DestinationSnowflake(@JsonProperty("database") String database, @JsonProperty("destinationType") DestinationSnowflakeSnowflakeEnum destinationType, @JsonProperty("host") String host, @JsonProperty("role") String role, @JsonProperty("schema") String schema, @JsonProperty("username") String username, @JsonProperty("warehouse") String warehouse) { - this.database = database; -this.destinationType = destinationType; -this.host = host; -this.role = role; -this.schema = schema; -this.username = username; -this.warehouse = warehouse; + this.database = database; + this.destinationType = destinationType; + this.host = host; + this.role = role; + this.schema = schema; + this.username = username; + this.warehouse = warehouse; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsKeyPairAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsKeyPairAuthentication.java index 3a1f310fb..a82c0b0bb 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsKeyPairAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsKeyPairAuthentication.java @@ -38,8 +38,7 @@ public DestinationSnowflakeCredentialsKeyPairAuthentication withPrivateKeyPasswo return this; } - public DestinationSnowflakeCredentialsKeyPairAuthentication(@JsonProperty("private_key") String privateKey) { - this.privateKey = privateKey; + this.privateKey = privateKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsOAuth20.java index dfaa9083c..b9d9a56fc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsOAuth20.java @@ -59,9 +59,8 @@ public DestinationSnowflakeCredentialsOAuth20 withRefreshToken(String refreshTok return this; } - public DestinationSnowflakeCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("refresh_token") String refreshToken) { - this.accessToken = accessToken; -this.refreshToken = refreshToken; + this.accessToken = accessToken; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsUsernameAndPassword.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsUsernameAndPassword.java index 984ac3e23..ac56160a0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsUsernameAndPassword.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeCredentialsUsernameAndPassword.java @@ -27,8 +27,7 @@ public DestinationSnowflakeCredentialsUsernameAndPassword withPassword(String pa return this; } - public DestinationSnowflakeCredentialsUsernameAndPassword(@JsonProperty("password") String password) { - this.password = password; + this.password = password; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3Staging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3Staging.java index c4b7dead8..87acb4620 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3Staging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3Staging.java @@ -93,11 +93,10 @@ public DestinationSnowflakeLoadingMethodAWSS3Staging withSecretAccessKey(String return this; } - public DestinationSnowflakeLoadingMethodAWSS3Staging(@JsonProperty("access_key_id") String accessKeyId, @JsonProperty("method") DestinationSnowflakeLoadingMethodAWSS3StagingMethodEnum method, @JsonProperty("s3_bucket_name") String s3BucketName, @JsonProperty("secret_access_key") String secretAccessKey) { - this.accessKeyId = accessKeyId; -this.method = method; -this.s3BucketName = s3BucketName; -this.secretAccessKey = secretAccessKey; + this.accessKeyId = accessKeyId; + this.method = method; + this.s3BucketName = s3BucketName; + this.secretAccessKey = secretAccessKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryption.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryption.java index 6e8f2d611..e9a4f6d9b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryption.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryption.java @@ -30,8 +30,7 @@ public DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncr return this; } - public DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryption(@JsonProperty("encryption_type") DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionAESCBCEnvelopeEncryptionEncryptionTypeEnum encryptionType) { - this.encryptionType = encryptionType; + this.encryptionType = encryptionType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption.java index a69f291a5..23074a0d9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption.java @@ -17,8 +17,7 @@ public DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption withE return this; } - public DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryption(@JsonProperty("encryption_type") DestinationSnowflakeLoadingMethodAWSS3StagingEncryptionNoEncryptionEncryptionTypeEnum encryptionType) { - this.encryptionType = encryptionType; + this.encryptionType = encryptionType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAzureBlobStorageStaging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAzureBlobStorageStaging.java index 6c78e732f..3b7e908d5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAzureBlobStorageStaging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodAzureBlobStorageStaging.java @@ -60,11 +60,10 @@ public DestinationSnowflakeLoadingMethodAzureBlobStorageStaging withMethod(Desti return this; } - public DestinationSnowflakeLoadingMethodAzureBlobStorageStaging(@JsonProperty("azure_blob_storage_account_name") String azureBlobStorageAccountName, @JsonProperty("azure_blob_storage_container_name") String azureBlobStorageContainerName, @JsonProperty("azure_blob_storage_sas_token") String azureBlobStorageSasToken, @JsonProperty("method") DestinationSnowflakeLoadingMethodAzureBlobStorageStagingMethodEnum method) { - this.azureBlobStorageAccountName = azureBlobStorageAccountName; -this.azureBlobStorageContainerName = azureBlobStorageContainerName; -this.azureBlobStorageSasToken = azureBlobStorageSasToken; -this.method = method; + this.azureBlobStorageAccountName = azureBlobStorageAccountName; + this.azureBlobStorageContainerName = azureBlobStorageContainerName; + this.azureBlobStorageSasToken = azureBlobStorageSasToken; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging.java index 6b37b064a..dd0a30b04 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging.java @@ -47,11 +47,10 @@ public DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging withProjectId( return this; } - public DestinationSnowflakeLoadingMethodGoogleCloudStorageStaging(@JsonProperty("bucket_name") String bucketName, @JsonProperty("credentials_json") String credentialsJson, @JsonProperty("method") DestinationSnowflakeLoadingMethodGoogleCloudStorageStagingMethodEnum method, @JsonProperty("project_id") String projectId) { - this.bucketName = bucketName; -this.credentialsJson = credentialsJson; -this.method = method; -this.projectId = projectId; + this.bucketName = bucketName; + this.credentialsJson = credentialsJson; + this.method = method; + this.projectId = projectId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodRecommendedInternalStaging.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodRecommendedInternalStaging.java index c5508f8fc..be1786c28 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodRecommendedInternalStaging.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodRecommendedInternalStaging.java @@ -17,8 +17,7 @@ public DestinationSnowflakeLoadingMethodRecommendedInternalStaging withMethod(De return this; } - public DestinationSnowflakeLoadingMethodRecommendedInternalStaging(@JsonProperty("method") DestinationSnowflakeLoadingMethodRecommendedInternalStagingMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodSelectAnotherOption.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodSelectAnotherOption.java index 160bbd408..6349601a3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodSelectAnotherOption.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationSnowflakeLoadingMethodSelectAnotherOption.java @@ -17,8 +17,7 @@ public DestinationSnowflakeLoadingMethodSelectAnotherOption withMethod(Destinati return this; } - public DestinationSnowflakeLoadingMethodSelectAnotherOption(@JsonProperty("method") DestinationSnowflakeLoadingMethodSelectAnotherOptionMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationTypesense.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationTypesense.java index 0fc9a7ee8..ae9f867e3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationTypesense.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationTypesense.java @@ -72,10 +72,9 @@ public DestinationTypesense withProtocol(String protocol) { return this; } - public DestinationTypesense(@JsonProperty("api_key") String apiKey, @JsonProperty("destinationType") DestinationTypesenseTypesenseEnum destinationType, @JsonProperty("host") String host) { - this.apiKey = apiKey; -this.destinationType = destinationType; -this.host = host; + this.apiKey = apiKey; + this.destinationType = destinationType; + this.host = host; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/DestinationsResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/DestinationsResponse.java index 50a397357..93e418f73 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/DestinationsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/DestinationsResponse.java @@ -31,10 +31,9 @@ public DestinationsResponse withPrevious(String previous) { return this; } - public DestinationsResponse(@JsonProperty("data") DestinationResponse[] data, @JsonProperty("next") String next, @JsonProperty("previous") String previous) { - this.data = data; -this.next = next; -this.previous = previous; + this.data = data; + this.next = next; + this.previous = previous; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/InitiateOauthRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/InitiateOauthRequest.java index 5b61da2cd..175409a27 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/InitiateOauthRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/InitiateOauthRequest.java @@ -53,10 +53,9 @@ public InitiateOauthRequest withWorkspaceId(String workspaceId) { return this; } - public InitiateOauthRequest(@JsonProperty("name") String name, @JsonProperty("redirectUrl") String redirectUrl, @JsonProperty("workspaceId") String workspaceId) { - this.name = name; -this.redirectUrl = redirectUrl; -this.workspaceId = workspaceId; + this.name = name; + this.redirectUrl = redirectUrl; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/JobCreateRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/JobCreateRequest.java index 72aadaa15..c35196fd3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/JobCreateRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/JobCreateRequest.java @@ -27,9 +27,8 @@ public JobCreateRequest withJobType(JobTypeEnumEnum jobType) { return this; } - public JobCreateRequest(@JsonProperty("connectionId") String connectionId, @JsonProperty("jobType") JobTypeEnumEnum jobType) { - this.connectionId = connectionId; -this.jobType = jobType; + this.connectionId = connectionId; + this.jobType = jobType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/JobResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/JobResponse.java index a1e63969d..1e1d1899a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/JobResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/JobResponse.java @@ -78,11 +78,10 @@ public JobResponse withStatus(JobStatusEnumEnum status) { return this; } - public JobResponse(@JsonProperty("jobId") Long jobId, @JsonProperty("jobType") JobTypeEnumEnum jobType, @JsonProperty("startTime") String startTime, @JsonProperty("status") JobStatusEnumEnum status) { - this.jobId = jobId; -this.jobType = jobType; -this.startTime = startTime; -this.status = status; + this.jobId = jobId; + this.jobType = jobType; + this.startTime = startTime; + this.status = status; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/JobsResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/JobsResponse.java index 48a6a6226..aa602404d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/JobsResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/JobsResponse.java @@ -31,10 +31,9 @@ public JobsResponse withPrevious(String previous) { return this; } - public JobsResponse(@JsonProperty("data") JobResponse[] data, @JsonProperty("next") String next, @JsonProperty("previous") String previous) { - this.data = data; -this.next = next; -this.previous = previous; + this.data = data; + this.next = next; + this.previous = previous; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/Security.java b/lib/src/main/java/com/airbyte/api/models/shared/Security.java index a94a46bdf..22724f50f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/Security.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/Security.java @@ -15,8 +15,7 @@ public Security withBearerAuth(String bearerAuth) { return this; } - public Security(@JsonProperty("bearerAuth") String bearerAuth) { - this.bearerAuth = bearerAuth; + this.bearerAuth = bearerAuth; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtable.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtable.java index 13f3a6285..03e77f1ae 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtable.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtable.java @@ -27,8 +27,7 @@ public SourceAirtable withSourceType(SourceAirtableAirtableEnum sourceType) { return this; } - public SourceAirtable(@JsonProperty("sourceType") SourceAirtableAirtableEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsOAuth20.java index 5c4d12ef0..deee47b0d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsOAuth20.java @@ -76,10 +76,9 @@ public SourceAirtableCredentialsOAuth20 withTokenExpiryDate(OffsetDateTime token return this; } - public SourceAirtableCredentialsOAuth20(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsPersonalAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsPersonalAccessToken.java index f304ef9e9..c00a92356 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsPersonalAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAirtableCredentialsPersonalAccessToken.java @@ -27,8 +27,7 @@ public SourceAirtableCredentialsPersonalAccessToken withAuthMethod(SourceAirtabl return this; } - public SourceAirtableCredentialsPersonalAccessToken(@JsonProperty("api_key") String apiKey) { - this.apiKey = apiKey; + this.apiKey = apiKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydb.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydb.java index 2a2496685..29e072e13 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydb.java @@ -126,12 +126,11 @@ public SourceAlloydb withUsername(String username) { return this; } - public SourceAlloydb(@JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceAlloydbAlloydbEnum sourceType, @JsonProperty("username") String username) { - this.database = database; -this.host = host; -this.port = port; -this.sourceType = sourceType; -this.username = username; + this.database = database; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbReplicationMethodStandard.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbReplicationMethodStandard.java index a7e92ce00..ec28c61c0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbReplicationMethodStandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbReplicationMethodStandard.java @@ -17,8 +17,7 @@ public SourceAlloydbReplicationMethodStandard withMethod(SourceAlloydbReplicatio return this; } - public SourceAlloydbReplicationMethodStandard(@JsonProperty("method") SourceAlloydbReplicationMethodStandardMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodNoTunnel.java index 2f241414f..5389bd644 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public SourceAlloydbTunnelMethodNoTunnel withTunnelMethod(SourceAlloydbTunnelMet return this; } - public SourceAlloydbTunnelMethodNoTunnel(@JsonProperty("tunnel_method") SourceAlloydbTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodPasswordAuthentication.java index df6466baa..71dc4b935 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public SourceAlloydbTunnelMethodPasswordAuthentication withTunnelUserPassword(St return this; } - public SourceAlloydbTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceAlloydbTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodSSHKeyAuthentication.java index 483c2cea4..da0941169 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAlloydbTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public SourceAlloydbTunnelMethodSSHKeyAuthentication withTunnelUser(String tunne return this; } - public SourceAlloydbTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceAlloydbTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonAds.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonAds.java index e81cbe17e..d6a506bdf 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonAds.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonAds.java @@ -123,11 +123,10 @@ public SourceAmazonAds withStateFilter(SourceAmazonAdsStateFilterEnum[] stateFil return this; } - public SourceAmazonAds(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceAmazonAdsAmazonAdsEnum sourceType) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.sourceType = sourceType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSellerPartner.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSellerPartner.java index 59c22528c..953824b16 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSellerPartner.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSellerPartner.java @@ -174,15 +174,14 @@ public SourceAmazonSellerPartner withSourceType(SourceAmazonSellerPartnerAmazonS return this; } - public SourceAmazonSellerPartner(@JsonProperty("app_id") String appId, @JsonProperty("aws_environment") SourceAmazonSellerPartnerAWSEnvironmentEnum awsEnvironment, @JsonProperty("lwa_app_id") String lwaAppId, @JsonProperty("lwa_client_secret") String lwaClientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("region") SourceAmazonSellerPartnerAWSRegionEnum region, @JsonProperty("replication_start_date") String replicationStartDate, @JsonProperty("sourceType") SourceAmazonSellerPartnerAmazonSellerPartnerEnum sourceType) { - this.appId = appId; -this.awsEnvironment = awsEnvironment; -this.lwaAppId = lwaAppId; -this.lwaClientSecret = lwaClientSecret; -this.refreshToken = refreshToken; -this.region = region; -this.replicationStartDate = replicationStartDate; -this.sourceType = sourceType; + this.appId = appId; + this.awsEnvironment = awsEnvironment; + this.lwaAppId = lwaAppId; + this.lwaClientSecret = lwaClientSecret; + this.refreshToken = refreshToken; + this.region = region; + this.replicationStartDate = replicationStartDate; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSqs.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSqs.java index 622094be2..21e1c90af 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSqs.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmazonSqs.java @@ -115,11 +115,10 @@ public SourceAmazonSqs withVisibilityTimeout(Long visibilityTimeout) { return this; } - public SourceAmazonSqs(@JsonProperty("delete_messages") Boolean deleteMessages, @JsonProperty("queue_url") String queueUrl, @JsonProperty("region") SourceAmazonSqsAWSRegionEnum region, @JsonProperty("sourceType") SourceAmazonSqsAmazonSqsEnum sourceType) { - this.deleteMessages = deleteMessages; -this.queueUrl = queueUrl; -this.region = region; -this.sourceType = sourceType; + this.deleteMessages = deleteMessages; + this.queueUrl = queueUrl; + this.region = region; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmplitude.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmplitude.java index 4dc9c4117..213b5b7d1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAmplitude.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAmplitude.java @@ -71,11 +71,10 @@ public SourceAmplitude withStartDate(String startDate) { return this; } - public SourceAmplitude(@JsonProperty("api_key") String apiKey, @JsonProperty("secret_key") String secretKey, @JsonProperty("sourceType") SourceAmplitudeAmplitudeEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiKey = apiKey; -this.secretKey = secretKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.secretKey = secretKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceApifyDataset.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceApifyDataset.java index 1d599ab48..22badc6b9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceApifyDataset.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceApifyDataset.java @@ -40,9 +40,8 @@ public SourceApifyDataset withSourceType(SourceApifyDatasetApifyDatasetEnum sour return this; } - public SourceApifyDataset(@JsonProperty("datasetId") String datasetId, @JsonProperty("sourceType") SourceApifyDatasetApifyDatasetEnum sourceType) { - this.datasetId = datasetId; -this.sourceType = sourceType; + this.datasetId = datasetId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAsana.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAsana.java index c9ccede03..bf458e23f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAsana.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAsana.java @@ -30,8 +30,7 @@ public SourceAsana withSourceType(SourceAsanaAsanaEnum sourceType) { return this; } - public SourceAsana(@JsonProperty("sourceType") SourceAsanaAsanaEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateViaAsanaOauth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateViaAsanaOauth.java index 47c3a858b..017cd3468 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateViaAsanaOauth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateViaAsanaOauth.java @@ -44,10 +44,9 @@ public SourceAsanaCredentialsAuthenticateViaAsanaOauth withRefreshToken(String r return this; } - public SourceAsanaCredentialsAuthenticateViaAsanaOauth(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateWithPersonalAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateWithPersonalAccessToken.java index 7d5cb7dbc..5c450d96b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateWithPersonalAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAsanaCredentialsAuthenticateWithPersonalAccessToken.java @@ -33,8 +33,7 @@ public SourceAsanaCredentialsAuthenticateWithPersonalAccessToken withPersonalAcc return this; } - public SourceAsanaCredentialsAuthenticateWithPersonalAccessToken(@JsonProperty("personal_access_token") String personalAccessToken) { - this.personalAccessToken = personalAccessToken; + this.personalAccessToken = personalAccessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0.java index 2166d92f4..c9f7166b8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0.java @@ -34,10 +34,9 @@ public SourceAuth0 withSourceType(SourceAuth0Auth0Enum sourceType) { return this; } - public SourceAuth0(@JsonProperty("base_url") String baseUrl, @JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceAuth0Auth0Enum sourceType) { - this.baseUrl = baseUrl; -this.credentials = credentials; -this.sourceType = sourceType; + this.baseUrl = baseUrl; + this.credentials = credentials; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2AccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2AccessToken.java index f5a1b5137..f067fbfb7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2AccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2AccessToken.java @@ -24,9 +24,8 @@ public SourceAuth0CredentialsOAuth2AccessToken withAuthType(SourceAuth0Credentia return this; } - public SourceAuth0CredentialsOAuth2AccessToken(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_type") SourceAuth0CredentialsOAuth2AccessTokenAuthenticationMethodEnum authType) { - this.accessToken = accessToken; -this.authType = authType; + this.accessToken = accessToken; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2ConfidentialApplication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2ConfidentialApplication.java index 7e2a83bd2..a42c070d3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2ConfidentialApplication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAuth0CredentialsOAuth2ConfidentialApplication.java @@ -44,11 +44,10 @@ public SourceAuth0CredentialsOAuth2ConfidentialApplication withClientSecret(Stri return this; } - public SourceAuth0CredentialsOAuth2ConfidentialApplication(@JsonProperty("audience") String audience, @JsonProperty("auth_type") SourceAuth0CredentialsOAuth2ConfidentialApplicationAuthenticationMethodEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret) { - this.audience = audience; -this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; + this.audience = audience; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAwsCloudtrail.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAwsCloudtrail.java index 5bd7163ad..f3be032d8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAwsCloudtrail.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAwsCloudtrail.java @@ -60,12 +60,11 @@ public SourceAwsCloudtrail withStartDate(LocalDate startDate) { return this; } - public SourceAwsCloudtrail(@JsonProperty("aws_key_id") String awsKeyId, @JsonProperty("aws_region_name") String awsRegionName, @JsonProperty("aws_secret_key") String awsSecretKey, @JsonProperty("sourceType") SourceAwsCloudtrailAwsCloudtrailEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.awsKeyId = awsKeyId; -this.awsRegionName = awsRegionName; -this.awsSecretKey = awsSecretKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.awsKeyId = awsKeyId; + this.awsRegionName = awsRegionName; + this.awsSecretKey = awsSecretKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorage.java index e24865e2c..c4c78cb54 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorage.java @@ -92,12 +92,11 @@ public SourceAzureBlobStorage withSourceType(SourceAzureBlobStorageAzureBlobStor return this; } - public SourceAzureBlobStorage(@JsonProperty("azure_blob_storage_account_key") String azureBlobStorageAccountKey, @JsonProperty("azure_blob_storage_account_name") String azureBlobStorageAccountName, @JsonProperty("azure_blob_storage_container_name") String azureBlobStorageContainerName, @JsonProperty("format") Object format, @JsonProperty("sourceType") SourceAzureBlobStorageAzureBlobStorageEnum sourceType) { - this.azureBlobStorageAccountKey = azureBlobStorageAccountKey; -this.azureBlobStorageAccountName = azureBlobStorageAccountName; -this.azureBlobStorageContainerName = azureBlobStorageContainerName; -this.format = format; -this.sourceType = sourceType; + this.azureBlobStorageAccountKey = azureBlobStorageAccountKey; + this.azureBlobStorageAccountName = azureBlobStorageAccountName; + this.azureBlobStorageContainerName = azureBlobStorageContainerName; + this.format = format; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java index b51402223..9df711da0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON.java @@ -17,8 +17,7 @@ public SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON withFormatType( return this; } - public SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSON(@JsonProperty("format_type") SourceAzureBlobStorageFormatJSONLinesNewlineDelimitedJSONFormatTypeEnum formatType) { - this.formatType = formatType; + this.formatType = formatType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureTable.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureTable.java index 98788ca5f..41f4c9432 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureTable.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceAzureTable.java @@ -50,10 +50,9 @@ public SourceAzureTable withStorageEndpointSuffix(String storageEndpointSuffix) return this; } - public SourceAzureTable(@JsonProperty("sourceType") SourceAzureTableAzureTableEnum sourceType, @JsonProperty("storage_access_key") String storageAccessKey, @JsonProperty("storage_account_name") String storageAccountName) { - this.sourceType = sourceType; -this.storageAccessKey = storageAccessKey; -this.storageAccountName = storageAccountName; + this.sourceType = sourceType; + this.storageAccessKey = storageAccessKey; + this.storageAccountName = storageAccountName; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceBambooHr.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceBambooHr.java index bd12371ca..cbf92add8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceBambooHr.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceBambooHr.java @@ -61,10 +61,9 @@ public SourceBambooHr withSubdomain(String subdomain) { return this; } - public SourceBambooHr(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceBambooHrBambooHrEnum sourceType, @JsonProperty("subdomain") String subdomain) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.subdomain = subdomain; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.subdomain = subdomain; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceBigcommerce.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceBigcommerce.java index 1c0fa714e..979fdd2e7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceBigcommerce.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceBigcommerce.java @@ -47,11 +47,10 @@ public SourceBigcommerce withStoreHash(String storeHash) { return this; } - public SourceBigcommerce(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceBigcommerceBigcommerceEnum sourceType, @JsonProperty("start_date") String startDate, @JsonProperty("store_hash") String storeHash) { - this.accessToken = accessToken; -this.sourceType = sourceType; -this.startDate = startDate; -this.storeHash = storeHash; + this.accessToken = accessToken; + this.sourceType = sourceType; + this.startDate = startDate; + this.storeHash = storeHash; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceBigquery.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceBigquery.java index 1988baa57..2b350f3f4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceBigquery.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceBigquery.java @@ -50,10 +50,9 @@ public SourceBigquery withSourceType(SourceBigqueryBigqueryEnum sourceType) { return this; } - public SourceBigquery(@JsonProperty("credentials_json") String credentialsJson, @JsonProperty("project_id") String projectId, @JsonProperty("sourceType") SourceBigqueryBigqueryEnum sourceType) { - this.credentialsJson = credentialsJson; -this.projectId = projectId; -this.sourceType = sourceType; + this.credentialsJson = credentialsJson; + this.projectId = projectId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceBingAds.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceBingAds.java index 666bad980..128b9916c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceBingAds.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceBingAds.java @@ -92,12 +92,11 @@ public SourceBingAds withTenantId(String tenantId) { return this; } - public SourceBingAds(@JsonProperty("client_id") String clientId, @JsonProperty("developer_token") String developerToken, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("reports_start_date") LocalDate reportsStartDate, @JsonProperty("sourceType") SourceBingAdsBingAdsEnum sourceType) { - this.clientId = clientId; -this.developerToken = developerToken; -this.refreshToken = refreshToken; -this.reportsStartDate = reportsStartDate; -this.sourceType = sourceType; + this.clientId = clientId; + this.developerToken = developerToken; + this.refreshToken = refreshToken; + this.reportsStartDate = reportsStartDate; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceBraintree.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceBraintree.java index b15fe9c7b..5fcdfc4d7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceBraintree.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceBraintree.java @@ -77,12 +77,11 @@ public SourceBraintree withStartDate(OffsetDateTime startDate) { return this; } - public SourceBraintree(@JsonProperty("environment") SourceBraintreeEnvironmentEnum environment, @JsonProperty("merchant_id") String merchantId, @JsonProperty("private_key") String privateKey, @JsonProperty("public_key") String publicKey, @JsonProperty("sourceType") SourceBraintreeBraintreeEnum sourceType) { - this.environment = environment; -this.merchantId = merchantId; -this.privateKey = privateKey; -this.publicKey = publicKey; -this.sourceType = sourceType; + this.environment = environment; + this.merchantId = merchantId; + this.privateKey = privateKey; + this.publicKey = publicKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceBraze.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceBraze.java index 128f575f9..d99c672f2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceBraze.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceBraze.java @@ -50,11 +50,10 @@ public SourceBraze withUrl(String url) { return this; } - public SourceBraze(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceBrazeBrazeEnum sourceType, @JsonProperty("start_date") LocalDate startDate, @JsonProperty("url") String url) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; -this.url = url; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; + this.url = url; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceChargebee.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceChargebee.java index 1ea05edf9..4bc88d453 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceChargebee.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceChargebee.java @@ -64,12 +64,11 @@ public SourceChargebee withStartDate(OffsetDateTime startDate) { return this; } - public SourceChargebee(@JsonProperty("product_catalog") SourceChargebeeProductCatalogEnum productCatalog, @JsonProperty("site") String site, @JsonProperty("site_api_key") String siteApiKey, @JsonProperty("sourceType") SourceChargebeeChargebeeEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.productCatalog = productCatalog; -this.site = site; -this.siteApiKey = siteApiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.productCatalog = productCatalog; + this.site = site; + this.siteApiKey = siteApiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceChartmogul.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceChartmogul.java index 05f07e111..b1002d216 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceChartmogul.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceChartmogul.java @@ -54,11 +54,10 @@ public SourceChartmogul withStartDate(OffsetDateTime startDate) { return this; } - public SourceChartmogul(@JsonProperty("api_key") String apiKey, @JsonProperty("interval") SourceChartmogulIntervalEnum interval, @JsonProperty("sourceType") SourceChartmogulChartmogulEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.apiKey = apiKey; -this.interval = interval; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.interval = interval; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouse.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouse.java index b232e046d..957bad638 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouse.java @@ -81,12 +81,11 @@ public SourceClickhouse withUsername(String username) { return this; } - public SourceClickhouse(@JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceClickhouseClickhouseEnum sourceType, @JsonProperty("username") String username) { - this.database = database; -this.host = host; -this.port = port; -this.sourceType = sourceType; -this.username = username; + this.database = database; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodNoTunnel.java index d5f49756d..f3e2a7edb 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public SourceClickhouseTunnelMethodNoTunnel withTunnelMethod(SourceClickhouseTun return this; } - public SourceClickhouseTunnelMethodNoTunnel(@JsonProperty("tunnel_method") SourceClickhouseTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodPasswordAuthentication.java index 8de106ef5..4be8b3234 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public SourceClickhouseTunnelMethodPasswordAuthentication withTunnelUserPassword return this; } - public SourceClickhouseTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceClickhouseTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodSSHKeyAuthentication.java index 37b2f95b2..f14960e23 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickhouseTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public SourceClickhouseTunnelMethodSSHKeyAuthentication withTunnelUser(String tu return this; } - public SourceClickhouseTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceClickhouseTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickupApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickupApi.java index 045a31f60..9bc39335e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceClickupApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceClickupApi.java @@ -84,9 +84,8 @@ public SourceClickupApi withTeamId(String teamId) { return this; } - public SourceClickupApi(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceClickupApiClickupApiEnum sourceType) { - this.apiToken = apiToken; -this.sourceType = sourceType; + this.apiToken = apiToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceCloseCom.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceCloseCom.java index 68d1f3cbf..3079b3a21 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceCloseCom.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceCloseCom.java @@ -47,9 +47,8 @@ public SourceCloseCom withStartDate(OffsetDateTime startDate) { return this; } - public SourceCloseCom(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceCloseComCloseComEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceCoda.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceCoda.java index 03a169ae5..73c962724 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceCoda.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceCoda.java @@ -27,9 +27,8 @@ public SourceCoda withSourceType(SourceCodaCodaEnum sourceType) { return this; } - public SourceCoda(@JsonProperty("auth_token") String authToken, @JsonProperty("sourceType") SourceCodaCodaEnum sourceType) { - this.authToken = authToken; -this.sourceType = sourceType; + this.authToken = authToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinApi.java index e026ce30e..28ec15c66 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinApi.java @@ -100,13 +100,12 @@ public SourceCoinApi withSymbolId(String symbolId) { return this; } - public SourceCoinApi(@JsonProperty("api_key") String apiKey, @JsonProperty("environment") SourceCoinApiEnvironmentEnum environment, @JsonProperty("period") String period, @JsonProperty("sourceType") SourceCoinApiCoinApiEnum sourceType, @JsonProperty("start_date") String startDate, @JsonProperty("symbol_id") String symbolId) { - this.apiKey = apiKey; -this.environment = environment; -this.period = period; -this.sourceType = sourceType; -this.startDate = startDate; -this.symbolId = symbolId; + this.apiKey = apiKey; + this.environment = environment; + this.period = period; + this.sourceType = sourceType; + this.startDate = startDate; + this.symbolId = symbolId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinmarketcap.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinmarketcap.java index 1177cfac6..fa0e1090e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinmarketcap.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceCoinmarketcap.java @@ -50,10 +50,9 @@ public SourceCoinmarketcap withSymbols(String[] symbols) { return this; } - public SourceCoinmarketcap(@JsonProperty("api_key") String apiKey, @JsonProperty("data_type") SourceCoinmarketcapDataTypeEnum dataType, @JsonProperty("sourceType") SourceCoinmarketcapCoinmarketcapEnum sourceType) { - this.apiKey = apiKey; -this.dataType = dataType; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.dataType = dataType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceConfigcat.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceConfigcat.java index b7f22d7aa..0e1206d81 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceConfigcat.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceConfigcat.java @@ -37,10 +37,9 @@ public SourceConfigcat withUsername(String username) { return this; } - public SourceConfigcat(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("sourceType") SourceConfigcatConfigcatEnum sourceType) { - this.username = username; -this.password = password; -this.sourceType = sourceType; + this.username = username; + this.password = password; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceConfluence.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceConfluence.java index 36f95fa3f..11bd5d5a3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceConfluence.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceConfluence.java @@ -47,11 +47,10 @@ public SourceConfluence withSourceType(SourceConfluenceConfluenceEnum sourceType return this; } - public SourceConfluence(@JsonProperty("api_token") String apiToken, @JsonProperty("domain_name") String domainName, @JsonProperty("email") String email, @JsonProperty("sourceType") SourceConfluenceConfluenceEnum sourceType) { - this.apiToken = apiToken; -this.domainName = domainName; -this.email = email; -this.sourceType = sourceType; + this.apiToken = apiToken; + this.domainName = domainName; + this.email = email; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceCreateRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceCreateRequest.java index a2add966d..84246904f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceCreateRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceCreateRequest.java @@ -44,10 +44,9 @@ public SourceCreateRequest withWorkspaceId(String workspaceId) { return this; } - public SourceCreateRequest(@JsonProperty("configuration") Object configuration, @JsonProperty("name") String name, @JsonProperty("workspaceId") String workspaceId) { - this.configuration = configuration; -this.name = name; -this.workspaceId = workspaceId; + this.configuration = configuration; + this.name = name; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceDatascope.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceDatascope.java index dfd3726ed..ccd6f3bd6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceDatascope.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceDatascope.java @@ -37,10 +37,9 @@ public SourceDatascope withStartDate(String startDate) { return this; } - public SourceDatascope(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceDatascopeDatascopeEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceDelighted.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceDelighted.java index 1ac648ce5..aaa601303 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceDelighted.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceDelighted.java @@ -44,10 +44,9 @@ public SourceDelighted withSourceType(SourceDelightedDelightedEnum sourceType) { return this; } - public SourceDelighted(@JsonProperty("api_key") String apiKey, @JsonProperty("since") OffsetDateTime since, @JsonProperty("sourceType") SourceDelightedDelightedEnum sourceType) { - this.apiKey = apiKey; -this.since = since; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.since = since; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceDixa.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceDixa.java index 3415f92df..7e20d4cfc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceDixa.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceDixa.java @@ -50,10 +50,9 @@ public SourceDixa withStartDate(String startDate) { return this; } - public SourceDixa(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceDixaDixaEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiToken = apiToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiToken = apiToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceDockerhub.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceDockerhub.java index 2b935fe11..9a636ff9c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceDockerhub.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceDockerhub.java @@ -27,9 +27,8 @@ public SourceDockerhub withSourceType(SourceDockerhubDockerhubEnum sourceType) { return this; } - public SourceDockerhub(@JsonProperty("docker_username") String dockerUsername, @JsonProperty("sourceType") SourceDockerhubDockerhubEnum sourceType) { - this.dockerUsername = dockerUsername; -this.sourceType = sourceType; + this.dockerUsername = dockerUsername; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceDremio.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceDremio.java index f7c3d4192..20d49904d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceDremio.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceDremio.java @@ -37,10 +37,9 @@ public SourceDremio withSourceType(SourceDremioDremioEnum sourceType) { return this; } - public SourceDremio(@JsonProperty("api_key") String apiKey, @JsonProperty("base_url") String baseUrl, @JsonProperty("sourceType") SourceDremioDremioEnum sourceType) { - this.apiKey = apiKey; -this.baseUrl = baseUrl; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.baseUrl = baseUrl; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceDynamodb.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceDynamodb.java index 7f5bc18e0..7ffd0b285 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceDynamodb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceDynamodb.java @@ -72,10 +72,9 @@ public SourceDynamodb withSourceType(SourceDynamodbDynamodbEnum sourceType) { return this; } - public SourceDynamodb(@JsonProperty("access_key_id") String accessKeyId, @JsonProperty("secret_access_key") String secretAccessKey, @JsonProperty("sourceType") SourceDynamodbDynamodbEnum sourceType) { - this.accessKeyId = accessKeyId; -this.secretAccessKey = secretAccessKey; -this.sourceType = sourceType; + this.accessKeyId = accessKeyId; + this.secretAccessKey = secretAccessKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloud.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloud.java index 3fe09b94c..14bd626c5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloud.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloud.java @@ -66,10 +66,9 @@ public SourceE2eTestCloud withType(SourceE2eTestCloudTypeEnum type) { return this; } - public SourceE2eTestCloud(@JsonProperty("max_messages") Long maxMessages, @JsonProperty("mock_catalog") Object mockCatalog, @JsonProperty("sourceType") SourceE2eTestCloudE2eTestCloudEnum sourceType) { - this.maxMessages = maxMessages; -this.mockCatalog = mockCatalog; -this.sourceType = sourceType; + this.maxMessages = maxMessages; + this.mockCatalog = mockCatalog; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogMultiSchema.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogMultiSchema.java index 656e04ee7..eb35860de 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogMultiSchema.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogMultiSchema.java @@ -27,9 +27,8 @@ public SourceE2eTestCloudMockCatalogMultiSchema withType(SourceE2eTestCloudMockC return this; } - public SourceE2eTestCloudMockCatalogMultiSchema(@JsonProperty("stream_schemas") String streamSchemas, @JsonProperty("type") SourceE2eTestCloudMockCatalogMultiSchemaTypeEnum type) { - this.streamSchemas = streamSchemas; -this.type = type; + this.streamSchemas = streamSchemas; + this.type = type; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogSingleSchema.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogSingleSchema.java index 0f46caa87..e67cef161 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogSingleSchema.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceE2eTestCloudMockCatalogSingleSchema.java @@ -50,10 +50,9 @@ public SourceE2eTestCloudMockCatalogSingleSchema withType(SourceE2eTestCloudMock return this; } - public SourceE2eTestCloudMockCatalogSingleSchema(@JsonProperty("stream_name") String streamName, @JsonProperty("stream_schema") String streamSchema, @JsonProperty("type") SourceE2eTestCloudMockCatalogSingleSchemaTypeEnum type) { - this.streamName = streamName; -this.streamSchema = streamSchema; -this.type = type; + this.streamName = streamName; + this.streamSchema = streamSchema; + this.type = type; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceEmailoctopus.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceEmailoctopus.java index ea6a82bbf..77136dcb8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceEmailoctopus.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceEmailoctopus.java @@ -27,9 +27,8 @@ public SourceEmailoctopus withSourceType(SourceEmailoctopusEmailoctopusEnum sour return this; } - public SourceEmailoctopus(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceEmailoctopusEmailoctopusEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceExchangeRates.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceExchangeRates.java index d8067c8d5..0664f223e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceExchangeRates.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceExchangeRates.java @@ -64,10 +64,9 @@ public SourceExchangeRates withStartDate(LocalDate startDate) { return this; } - public SourceExchangeRates(@JsonProperty("access_key") String accessKey, @JsonProperty("sourceType") SourceExchangeRatesExchangeRatesEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.accessKey = accessKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.accessKey = accessKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketing.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketing.java index a94cb3d83..dab4de6f9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketing.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketing.java @@ -144,11 +144,10 @@ public SourceFacebookMarketing withStartDate(OffsetDateTime startDate) { return this; } - public SourceFacebookMarketing(@JsonProperty("access_token") String accessToken, @JsonProperty("account_id") String accountId, @JsonProperty("sourceType") SourceFacebookMarketingFacebookMarketingEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.accessToken = accessToken; -this.accountId = accountId; -this.sourceType = sourceType; -this.startDate = startDate; + this.accessToken = accessToken; + this.accountId = accountId; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketingInsightConfig.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketingInsightConfig.java index 331a98c53..e6a5332a0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketingInsightConfig.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookMarketingInsightConfig.java @@ -119,8 +119,7 @@ public SourceFacebookMarketingInsightConfig withTimeIncrement(Long timeIncrement return this; } - public SourceFacebookMarketingInsightConfig(@JsonProperty("name") String name) { - this.name = name; + this.name = name; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookPages.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookPages.java index 6ea3ee216..fb8e99126 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookPages.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFacebookPages.java @@ -37,10 +37,9 @@ public SourceFacebookPages withSourceType(SourceFacebookPagesFacebookPagesEnum s return this; } - public SourceFacebookPages(@JsonProperty("access_token") String accessToken, @JsonProperty("page_id") String pageId, @JsonProperty("sourceType") SourceFacebookPagesFacebookPagesEnum sourceType) { - this.accessToken = accessToken; -this.pageId = pageId; -this.sourceType = sourceType; + this.accessToken = accessToken; + this.pageId = pageId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaker.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaker.java index d5b5dc85b..1deee1c75 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaker.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaker.java @@ -73,9 +73,8 @@ public SourceFaker withSourceType(SourceFakerFakerEnum sourceType) { return this; } - public SourceFaker(@JsonProperty("count") Long count, @JsonProperty("sourceType") SourceFakerFakerEnum sourceType) { - this.count = count; -this.sourceType = sourceType; + this.count = count; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFauna.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFauna.java index fab594f4d..b7796db35 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFauna.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFauna.java @@ -70,12 +70,11 @@ public SourceFauna withSourceType(SourceFaunaFaunaEnum sourceType) { return this; } - public SourceFauna(@JsonProperty("domain") String domain, @JsonProperty("port") Long port, @JsonProperty("scheme") String scheme, @JsonProperty("secret") String secret, @JsonProperty("sourceType") SourceFaunaFaunaEnum sourceType) { - this.domain = domain; -this.port = port; -this.scheme = scheme; -this.secret = secret; -this.sourceType = sourceType; + this.domain = domain; + this.port = port; + this.scheme = scheme; + this.secret = secret; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollection.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollection.java index cb859f766..803196d14 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollection.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollection.java @@ -35,9 +35,8 @@ public SourceFaunaCollection withPageSize(Long pageSize) { return this; } - public SourceFaunaCollection(@JsonProperty("deletions") Object deletions, @JsonProperty("page_size") Long pageSize) { - this.deletions = deletions; -this.pageSize = pageSize; + this.deletions = deletions; + this.pageSize = pageSize; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsDisabled.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsDisabled.java index 2de64eb51..c568fa126 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsDisabled.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsDisabled.java @@ -20,8 +20,7 @@ public SourceFaunaCollectionDeletionsDisabled withDeletionMode(SourceFaunaCollec return this; } - public SourceFaunaCollectionDeletionsDisabled(@JsonProperty("deletion_mode") SourceFaunaCollectionDeletionsDisabledDeletionModeEnum deletionMode) { - this.deletionMode = deletionMode; + this.deletionMode = deletionMode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsEnabled.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsEnabled.java index 90afb5cb9..906264997 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsEnabled.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFaunaCollectionDeletionsEnabled.java @@ -30,9 +30,8 @@ public SourceFaunaCollectionDeletionsEnabled withDeletionMode(SourceFaunaCollect return this; } - public SourceFaunaCollectionDeletionsEnabled(@JsonProperty("column") String column, @JsonProperty("deletion_mode") SourceFaunaCollectionDeletionsEnabledDeletionModeEnum deletionMode) { - this.column = column; -this.deletionMode = deletionMode; + this.column = column; + this.deletionMode = deletionMode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecure.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecure.java index aa606c0c8..e86670f68 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecure.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecure.java @@ -70,12 +70,11 @@ public SourceFileSecure withUrl(String url) { return this; } - public SourceFileSecure(@JsonProperty("dataset_name") String datasetName, @JsonProperty("format") SourceFileSecureFileFormatEnum format, @JsonProperty("provider") Object provider, @JsonProperty("sourceType") SourceFileSecureFileSecureEnum sourceType, @JsonProperty("url") String url) { - this.datasetName = datasetName; -this.format = format; -this.provider = provider; -this.sourceType = sourceType; -this.url = url; + this.datasetName = datasetName; + this.format = format; + this.provider = provider; + this.sourceType = sourceType; + this.url = url; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderAzBlobAzureBlobStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderAzBlobAzureBlobStorage.java index eca974dae..e388b164e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderAzBlobAzureBlobStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderAzBlobAzureBlobStorage.java @@ -51,9 +51,8 @@ public SourceFileSecureProviderAzBlobAzureBlobStorage withStorageAccount(String return this; } - public SourceFileSecureProviderAzBlobAzureBlobStorage(@JsonProperty("storage") SourceFileSecureProviderAzBlobAzureBlobStorageStorageEnum storage, @JsonProperty("storage_account") String storageAccount) { - this.storage = storage; -this.storageAccount = storageAccount; + this.storage = storage; + this.storageAccount = storageAccount; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderGCSGoogleCloudStorage.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderGCSGoogleCloudStorage.java index 138a296a0..93a0fd26f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderGCSGoogleCloudStorage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderGCSGoogleCloudStorage.java @@ -30,8 +30,7 @@ public SourceFileSecureProviderGCSGoogleCloudStorage withStorage(SourceFileSecur return this; } - public SourceFileSecureProviderGCSGoogleCloudStorage(@JsonProperty("storage") SourceFileSecureProviderGCSGoogleCloudStorageStorageEnum storage) { - this.storage = storage; + this.storage = storage; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderHTTPSPublicWeb.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderHTTPSPublicWeb.java index 15858b760..65cd37205 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderHTTPSPublicWeb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderHTTPSPublicWeb.java @@ -30,8 +30,7 @@ public SourceFileSecureProviderHTTPSPublicWeb withUserAgent(Boolean userAgent) { return this; } - public SourceFileSecureProviderHTTPSPublicWeb(@JsonProperty("storage") SourceFileSecureProviderHTTPSPublicWebStorageEnum storage) { - this.storage = storage; + this.storage = storage; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderS3AmazonWebServices.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderS3AmazonWebServices.java index 30bd6cfcd..2fdbcdfde 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderS3AmazonWebServices.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderS3AmazonWebServices.java @@ -41,8 +41,7 @@ public SourceFileSecureProviderS3AmazonWebServices withStorage(SourceFileSecureP return this; } - public SourceFileSecureProviderS3AmazonWebServices(@JsonProperty("storage") SourceFileSecureProviderS3AmazonWebServicesStorageEnum storage) { - this.storage = storage; + this.storage = storage; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSCPSecureCopyProtocol.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSCPSecureCopyProtocol.java index 249aff045..00fd1c6cb 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSCPSecureCopyProtocol.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSCPSecureCopyProtocol.java @@ -49,10 +49,9 @@ public SourceFileSecureProviderSCPSecureCopyProtocol withUser(String user) { return this; } - public SourceFileSecureProviderSCPSecureCopyProtocol(@JsonProperty("host") String host, @JsonProperty("storage") SourceFileSecureProviderSCPSecureCopyProtocolStorageEnum storage, @JsonProperty("user") String user) { - this.host = host; -this.storage = storage; -this.user = user; + this.host = host; + this.storage = storage; + this.user = user; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSFTPSecureFileTransferProtocol.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSFTPSecureFileTransferProtocol.java index 3f64b9d92..fbaf7d6f3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSFTPSecureFileTransferProtocol.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSFTPSecureFileTransferProtocol.java @@ -49,10 +49,9 @@ public SourceFileSecureProviderSFTPSecureFileTransferProtocol withUser(String us return this; } - public SourceFileSecureProviderSFTPSecureFileTransferProtocol(@JsonProperty("host") String host, @JsonProperty("storage") SourceFileSecureProviderSFTPSecureFileTransferProtocolStorageEnum storage, @JsonProperty("user") String user) { - this.host = host; -this.storage = storage; -this.user = user; + this.host = host; + this.storage = storage; + this.user = user; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSSHSecureShell.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSSHSecureShell.java index b40b23a7f..85f26d7a9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSSHSecureShell.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFileSecureProviderSSHSecureShell.java @@ -49,10 +49,9 @@ public SourceFileSecureProviderSSHSecureShell withUser(String user) { return this; } - public SourceFileSecureProviderSSHSecureShell(@JsonProperty("host") String host, @JsonProperty("storage") SourceFileSecureProviderSSHSecureShellStorageEnum storage, @JsonProperty("user") String user) { - this.host = host; -this.storage = storage; -this.user = user; + this.host = host; + this.storage = storage; + this.user = user; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFirebolt.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFirebolt.java index aec278a5b..ccc96dba3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFirebolt.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFirebolt.java @@ -82,11 +82,10 @@ public SourceFirebolt withUsername(String username) { return this; } - public SourceFirebolt(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("database") String database, @JsonProperty("sourceType") SourceFireboltFireboltEnum sourceType) { - this.username = username; -this.password = password; -this.database = database; -this.sourceType = sourceType; + this.username = username; + this.password = password; + this.database = database; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshcaller.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshcaller.java index 3ea205e03..18d62ea6c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshcaller.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshcaller.java @@ -71,11 +71,10 @@ public SourceFreshcaller withSyncLagMinutes(Long syncLagMinutes) { return this; } - public SourceFreshcaller(@JsonProperty("api_key") String apiKey, @JsonProperty("domain") String domain, @JsonProperty("sourceType") SourceFreshcallerFreshcallerEnum sourceType, @JsonProperty("start_date") Object startDate) { - this.apiKey = apiKey; -this.domain = domain; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.domain = domain; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshdesk.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshdesk.java index 6196fc58b..269876357 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshdesk.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshdesk.java @@ -68,10 +68,9 @@ public SourceFreshdesk withStartDate(OffsetDateTime startDate) { return this; } - public SourceFreshdesk(@JsonProperty("api_key") String apiKey, @JsonProperty("domain") String domain, @JsonProperty("sourceType") SourceFreshdeskFreshdeskEnum sourceType) { - this.apiKey = apiKey; -this.domain = domain; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.domain = domain; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshsales.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshsales.java index 958b8d462..3b8a7cba7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshsales.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceFreshsales.java @@ -37,10 +37,9 @@ public SourceFreshsales withSourceType(SourceFreshsalesFreshsalesEnum sourceType return this; } - public SourceFreshsales(@JsonProperty("api_key") String apiKey, @JsonProperty("domain_name") String domainName, @JsonProperty("sourceType") SourceFreshsalesFreshsalesEnum sourceType) { - this.apiKey = apiKey; -this.domainName = domainName; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.domainName = domainName; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGcs.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGcs.java index eedf800c0..d084f3fa4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGcs.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGcs.java @@ -47,11 +47,10 @@ public SourceGcs withSourceType(SourceGcsGcsEnum sourceType) { return this; } - public SourceGcs(@JsonProperty("gcs_bucket") String gcsBucket, @JsonProperty("gcs_path") String gcsPath, @JsonProperty("service_account") String serviceAccount, @JsonProperty("sourceType") SourceGcsGcsEnum sourceType) { - this.gcsBucket = gcsBucket; -this.gcsPath = gcsPath; -this.serviceAccount = serviceAccount; -this.sourceType = sourceType; + this.gcsBucket = gcsBucket; + this.gcsPath = gcsPath; + this.serviceAccount = serviceAccount; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGetlago.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGetlago.java index 55a46bc6c..08e58528e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGetlago.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGetlago.java @@ -27,9 +27,8 @@ public SourceGetlago withSourceType(SourceGetlagoGetlagoEnum sourceType) { return this; } - public SourceGetlago(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceGetlagoGetlagoEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGithub.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGithub.java index fb10e896b..7b59473bc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGithub.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGithub.java @@ -79,10 +79,9 @@ public SourceGithub withStartDate(OffsetDateTime startDate) { return this; } - public SourceGithub(@JsonProperty("repository") String repository, @JsonProperty("sourceType") SourceGithubGithubEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.repository = repository; -this.sourceType = sourceType; -this.startDate = startDate; + this.repository = repository; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsOAuth.java index e57cd0bfb..f3702b1d2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsOAuth.java @@ -30,8 +30,7 @@ public SourceGithubCredentialsOAuth withOptionTitle(SourceGithubCredentialsOAuth return this; } - public SourceGithubCredentialsOAuth(@JsonProperty("access_token") String accessToken) { - this.accessToken = accessToken; + this.accessToken = accessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsPersonalAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsPersonalAccessToken.java index 3ee95a267..7e54096a7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsPersonalAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGithubCredentialsPersonalAccessToken.java @@ -30,8 +30,7 @@ public SourceGithubCredentialsPersonalAccessToken withPersonalAccessToken(String return this; } - public SourceGithubCredentialsPersonalAccessToken(@JsonProperty("personal_access_token") String personalAccessToken) { - this.personalAccessToken = personalAccessToken; + this.personalAccessToken = personalAccessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlab.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlab.java index 0b48b6b64..a80b55efa 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlab.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlab.java @@ -75,11 +75,10 @@ public SourceGitlab withStartDate(OffsetDateTime startDate) { return this; } - public SourceGitlab(@JsonProperty("api_url") String apiUrl, @JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceGitlabGitlabEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.apiUrl = apiUrl; -this.credentials = credentials; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiUrl = apiUrl; + this.credentials = credentials; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsOAuth20.java index ee729f8c5..42950cbb4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsOAuth20.java @@ -74,12 +74,11 @@ public SourceGitlabCredentialsOAuth20 withTokenExpiryDate(OffsetDateTime tokenEx return this; } - public SourceGitlabCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("token_expiry_date") OffsetDateTime tokenExpiryDate) { - this.accessToken = accessToken; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.tokenExpiryDate = tokenExpiryDate; + this.accessToken = accessToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.tokenExpiryDate = tokenExpiryDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsPrivateToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsPrivateToken.java index 63ddc03f4..722660aa3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsPrivateToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGitlabCredentialsPrivateToken.java @@ -27,8 +27,7 @@ public SourceGitlabCredentialsPrivateToken withAuthType(SourceGitlabCredentialsP return this; } - public SourceGitlabCredentialsPrivateToken(@JsonProperty("access_token") String accessToken) { - this.accessToken = accessToken; + this.accessToken = accessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGlassfrog.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGlassfrog.java index 4ed06e509..b36256070 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGlassfrog.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGlassfrog.java @@ -27,9 +27,8 @@ public SourceGlassfrog withSourceType(SourceGlassfrogGlassfrogEnum sourceType) { return this; } - public SourceGlassfrog(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceGlassfrogGlassfrogEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGnews.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGnews.java index 25cd838a0..9bf915d2c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGnews.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGnews.java @@ -163,10 +163,9 @@ public SourceGnews withTopHeadlinesTopic(SourceGnewsTopHeadlinesTopicEnum topHea return this; } - public SourceGnews(@JsonProperty("api_key") String apiKey, @JsonProperty("query") String query, @JsonProperty("sourceType") SourceGnewsGnewsEnum sourceType) { - this.apiKey = apiKey; -this.query = query; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.query = query; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAds.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAds.java index 8448f06e2..4d3915723 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAds.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAds.java @@ -91,11 +91,10 @@ public SourceGoogleAds withStartDate(LocalDate startDate) { return this; } - public SourceGoogleAds(@JsonProperty("credentials") SourceGoogleAdsGoogleCredentials credentials, @JsonProperty("customer_id") String customerId, @JsonProperty("sourceType") SourceGoogleAdsGoogleAdsEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.credentials = credentials; -this.customerId = customerId; -this.sourceType = sourceType; -this.startDate = startDate; + this.credentials = credentials; + this.customerId = customerId; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsCustomQueries.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsCustomQueries.java index a265467d6..7a51d2849 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsCustomQueries.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsCustomQueries.java @@ -27,9 +27,8 @@ public SourceGoogleAdsCustomQueries withTableName(String tableName) { return this; } - public SourceGoogleAdsCustomQueries(@JsonProperty("query") String query, @JsonProperty("table_name") String tableName) { - this.query = query; -this.tableName = tableName; + this.query = query; + this.tableName = tableName; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsGoogleCredentials.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsGoogleCredentials.java index b8d3f2547..a5e179cd2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsGoogleCredentials.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAdsGoogleCredentials.java @@ -60,11 +60,10 @@ public SourceGoogleAdsGoogleCredentials withRefreshToken(String refreshToken) { return this; } - public SourceGoogleAdsGoogleCredentials(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("developer_token") String developerToken, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.developerToken = developerToken; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.developerToken = developerToken; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApi.java index c8a3d771b..a1dd1fc1f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApi.java @@ -75,10 +75,9 @@ public SourceGoogleAnalyticsDataApi withWindowInDays(Long windowInDays) { return this; } - public SourceGoogleAnalyticsDataApi(@JsonProperty("date_ranges_start_date") LocalDate dateRangesStartDate, @JsonProperty("property_id") String propertyId, @JsonProperty("sourceType") SourceGoogleAnalyticsDataApiGoogleAnalyticsDataApiEnum sourceType) { - this.dateRangesStartDate = dateRangesStartDate; -this.propertyId = propertyId; -this.sourceType = sourceType; + this.dateRangesStartDate = dateRangesStartDate; + this.propertyId = propertyId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth.java index 393d7030e..fe7be02e9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth.java @@ -61,10 +61,9 @@ public SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth withRef return this; } - public SourceGoogleAnalyticsDataApiCredentialsAuthenticateViaGoogleOauth(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication.java index 3b84500b9..2e7e52c51 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication.java @@ -30,8 +30,7 @@ public SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication wi return this; } - public SourceGoogleAnalyticsDataApiCredentialsServiceAccountKeyAuthentication(@JsonProperty("credentials_json") String credentialsJson) { - this.credentialsJson = credentialsJson; + this.credentialsJson = credentialsJson; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4.java index ede325e63..538fc7f5f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4.java @@ -72,10 +72,9 @@ public SourceGoogleAnalyticsV4 withWindowInDays(Long windowInDays) { return this; } - public SourceGoogleAnalyticsV4(@JsonProperty("sourceType") SourceGoogleAnalyticsV4GoogleAnalyticsV4Enum sourceType, @JsonProperty("start_date") String startDate, @JsonProperty("view_id") String viewId) { - this.sourceType = sourceType; -this.startDate = startDate; -this.viewId = viewId; + this.sourceType = sourceType; + this.startDate = startDate; + this.viewId = viewId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth.java index c11f23507..81faf7770 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth.java @@ -61,10 +61,9 @@ public SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth withRefreshT return this; } - public SourceGoogleAnalyticsV4CredentialsAuthenticateViaGoogleOauth(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication.java index 5f6efaa8a..11dadb219 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication.java @@ -30,8 +30,7 @@ public SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication withCre return this; } - public SourceGoogleAnalyticsV4CredentialsServiceAccountKeyAuthentication(@JsonProperty("credentials_json") String credentialsJson) { - this.credentialsJson = credentialsJson; + this.credentialsJson = credentialsJson; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleDirectory.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleDirectory.java index def57a181..d843aa64a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleDirectory.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleDirectory.java @@ -37,10 +37,9 @@ public SourceGoogleDirectory withSourceType(SourceGoogleDirectoryGoogleDirectory return this; } - public SourceGoogleDirectory(@JsonProperty("credentials_json") String credentialsJson, @JsonProperty("email") String email, @JsonProperty("sourceType") SourceGoogleDirectoryGoogleDirectoryEnum sourceType) { - this.credentialsJson = credentialsJson; -this.email = email; -this.sourceType = sourceType; + this.credentialsJson = credentialsJson; + this.email = email; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsole.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsole.java index 53be73c91..dcd8bfdd2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsole.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsole.java @@ -72,11 +72,10 @@ public SourceGoogleSearchConsole withStartDate(LocalDate startDate) { return this; } - public SourceGoogleSearchConsole(@JsonProperty("authorization") Object authorization, @JsonProperty("site_urls") String[] siteUrls, @JsonProperty("sourceType") SourceGoogleSearchConsoleGoogleSearchConsoleEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.authorization = authorization; -this.siteUrls = siteUrls; -this.sourceType = sourceType; -this.startDate = startDate; + this.authorization = authorization; + this.siteUrls = siteUrls; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationOAuth.java index 100ccb7e5..928285b38 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationOAuth.java @@ -57,11 +57,10 @@ public SourceGoogleSearchConsoleAuthorizationOAuth withRefreshToken(String refre return this; } - public SourceGoogleSearchConsoleAuthorizationOAuth(@JsonProperty("auth_type") SourceGoogleSearchConsoleAuthorizationOAuthAuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication.java index cd62bd7a4..7ecd67a03 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication.java @@ -34,10 +34,9 @@ public SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication wit return this; } - public SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthentication(@JsonProperty("auth_type") SourceGoogleSearchConsoleAuthorizationServiceAccountKeyAuthenticationAuthTypeEnum authType, @JsonProperty("email") String email, @JsonProperty("service_account_info") String serviceAccountInfo) { - this.authType = authType; -this.email = email; -this.serviceAccountInfo = serviceAccountInfo; + this.authType = authType; + this.email = email; + this.serviceAccountInfo = serviceAccountInfo; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheets.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheets.java index fa1c7ece2..b8b1c8e5f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheets.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheets.java @@ -50,10 +50,9 @@ public SourceGoogleSheets withSpreadsheetId(String spreadsheetId) { return this; } - public SourceGoogleSheets(@JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceGoogleSheetsGoogleSheetsEnum sourceType, @JsonProperty("spreadsheet_id") String spreadsheetId) { - this.credentials = credentials; -this.sourceType = sourceType; -this.spreadsheetId = spreadsheetId; + this.credentials = credentials; + this.sourceType = sourceType; + this.spreadsheetId = spreadsheetId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth.java index 9fd7f830b..4a4784bcf 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth.java @@ -47,11 +47,10 @@ public SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth withRefreshToken( return this; } - public SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuth(@JsonProperty("auth_type") SourceGoogleSheetsCredentialsAuthenticateViaGoogleOAuthAuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication.java index 46c4ea5df..faefd8143 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication.java @@ -27,9 +27,8 @@ public SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication withServiceA return this; } - public SourceGoogleSheetsCredentialsServiceAccountKeyAuthentication(@JsonProperty("auth_type") SourceGoogleSheetsCredentialsServiceAccountKeyAuthenticationAuthTypeEnum authType, @JsonProperty("service_account_info") String serviceAccountInfo) { - this.authType = authType; -this.serviceAccountInfo = serviceAccountInfo; + this.authType = authType; + this.serviceAccountInfo = serviceAccountInfo; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWebfonts.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWebfonts.java index 42c6f233c..211758fea 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWebfonts.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWebfonts.java @@ -62,9 +62,8 @@ public SourceGoogleWebfonts withSourceType(SourceGoogleWebfontsGoogleWebfontsEnu return this; } - public SourceGoogleWebfonts(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceGoogleWebfontsGoogleWebfontsEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWorkspaceAdminReports.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWorkspaceAdminReports.java index 82a5b5631..e636a2668 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWorkspaceAdminReports.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGoogleWorkspaceAdminReports.java @@ -50,10 +50,9 @@ public SourceGoogleWorkspaceAdminReports withSourceType(SourceGoogleWorkspaceAdm return this; } - public SourceGoogleWorkspaceAdminReports(@JsonProperty("credentials_json") String credentialsJson, @JsonProperty("email") String email, @JsonProperty("sourceType") SourceGoogleWorkspaceAdminReportsGoogleWorkspaceAdminReportsEnum sourceType) { - this.credentialsJson = credentialsJson; -this.email = email; -this.sourceType = sourceType; + this.credentialsJson = credentialsJson; + this.email = email; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGreenhouse.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGreenhouse.java index ccd7442d6..fae27de5c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGreenhouse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGreenhouse.java @@ -27,9 +27,8 @@ public SourceGreenhouse withSourceType(SourceGreenhouseGreenhouseEnum sourceType return this; } - public SourceGreenhouse(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceGreenhouseGreenhouseEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceGridly.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceGridly.java index f39285536..3bde62f58 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceGridly.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceGridly.java @@ -34,10 +34,9 @@ public SourceGridly withSourceType(SourceGridlyGridlyEnum sourceType) { return this; } - public SourceGridly(@JsonProperty("api_key") String apiKey, @JsonProperty("grid_id") String gridId, @JsonProperty("sourceType") SourceGridlyGridlyEnum sourceType) { - this.apiKey = apiKey; -this.gridId = gridId; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.gridId = gridId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceHarvest.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceHarvest.java index f278a4596..f1fe994a7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceHarvest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceHarvest.java @@ -70,10 +70,9 @@ public SourceHarvest withSourceType(SourceHarvestHarvestEnum sourceType) { return this; } - public SourceHarvest(@JsonProperty("account_id") String accountId, @JsonProperty("replication_start_date") OffsetDateTime replicationStartDate, @JsonProperty("sourceType") SourceHarvestHarvestEnum sourceType) { - this.accountId = accountId; -this.replicationStartDate = replicationStartDate; -this.sourceType = sourceType; + this.accountId = accountId; + this.replicationStartDate = replicationStartDate; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubplanner.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubplanner.java index 1ea473fcf..a0f67275a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubplanner.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubplanner.java @@ -27,9 +27,8 @@ public SourceHubplanner withSourceType(SourceHubplannerHubplannerEnum sourceType return this; } - public SourceHubplanner(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceHubplannerHubplannerEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspot.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspot.java index 0fcaa0c1f..7447a027b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspot.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspot.java @@ -44,10 +44,9 @@ public SourceHubspot withStartDate(OffsetDateTime startDate) { return this; } - public SourceHubspot(@JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceHubspotHubspotEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.credentials = credentials; -this.sourceType = sourceType; -this.startDate = startDate; + this.credentials = credentials; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsOAuth.java index 8ed316ede..0b18ce725 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsOAuth.java @@ -50,11 +50,10 @@ public SourceHubspotCredentialsOAuth withRefreshToken(String refreshToken) { return this; } - public SourceHubspotCredentialsOAuth(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("credentials_title") SourceHubspotCredentialsOAuthCredentialsEnum credentialsTitle, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.credentialsTitle = credentialsTitle; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.credentialsTitle = credentialsTitle; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsPrivateApp.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsPrivateApp.java index ead68cbd7..34c7239a1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsPrivateApp.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceHubspotCredentialsPrivateApp.java @@ -30,9 +30,8 @@ public SourceHubspotCredentialsPrivateApp withCredentialsTitle(SourceHubspotCred return this; } - public SourceHubspotCredentialsPrivateApp(@JsonProperty("access_token") String accessToken, @JsonProperty("credentials_title") SourceHubspotCredentialsPrivateAppCredentialsEnum credentialsTitle) { - this.accessToken = accessToken; -this.credentialsTitle = credentialsTitle; + this.accessToken = accessToken; + this.credentialsTitle = credentialsTitle; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceInsightly.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceInsightly.java index 46170a218..a77ea8de5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceInsightly.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceInsightly.java @@ -37,10 +37,9 @@ public SourceInsightly withToken(String token) { return this; } - public SourceInsightly(@JsonProperty("sourceType") SourceInsightlyInsightlyEnum sourceType, @JsonProperty("start_date") String startDate, @JsonProperty("token") String token) { - this.sourceType = sourceType; -this.startDate = startDate; -this.token = token; + this.sourceType = sourceType; + this.startDate = startDate; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceInstagram.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceInstagram.java index ce49421a1..039778ee3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceInstagram.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceInstagram.java @@ -44,10 +44,9 @@ public SourceInstagram withStartDate(OffsetDateTime startDate) { return this; } - public SourceInstagram(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceInstagramInstagramEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.accessToken = accessToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.accessToken = accessToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceInstatus.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceInstatus.java index 452ec7d2a..ea8809160 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceInstatus.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceInstatus.java @@ -27,9 +27,8 @@ public SourceInstatus withSourceType(SourceInstatusInstatusEnum sourceType) { return this; } - public SourceInstatus(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceInstatusInstatusEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceIntercom.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceIntercom.java index 0df99d1a5..ba0fa44c6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceIntercom.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceIntercom.java @@ -44,10 +44,9 @@ public SourceIntercom withStartDate(OffsetDateTime startDate) { return this; } - public SourceIntercom(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceIntercomIntercomEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.accessToken = accessToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.accessToken = accessToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceIp2whois.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceIp2whois.java index 77fa762f7..2f7e5cdbe 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceIp2whois.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceIp2whois.java @@ -41,8 +41,7 @@ public SourceIp2whois withSourceType(SourceIp2whoisIp2whoisEnum sourceType) { return this; } - public SourceIp2whois(@JsonProperty("sourceType") SourceIp2whoisIp2whoisEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceIterable.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceIterable.java index ca802a71d..730655482 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceIterable.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceIterable.java @@ -44,10 +44,9 @@ public SourceIterable withStartDate(OffsetDateTime startDate) { return this; } - public SourceIterable(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceIterableIterableEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceJira.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceJira.java index d736fe892..a35aa4f90 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceJira.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceJira.java @@ -111,11 +111,10 @@ public SourceJira withStartDate(OffsetDateTime startDate) { return this; } - public SourceJira(@JsonProperty("api_token") String apiToken, @JsonProperty("domain") String domain, @JsonProperty("email") String email, @JsonProperty("sourceType") SourceJiraJiraEnum sourceType) { - this.apiToken = apiToken; -this.domain = domain; -this.email = email; -this.sourceType = sourceType; + this.apiToken = apiToken; + this.domain = domain; + this.email = email; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceK6Cloud.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceK6Cloud.java index 71b8c01c3..d21a3f515 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceK6Cloud.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceK6Cloud.java @@ -27,9 +27,8 @@ public SourceK6Cloud withSourceType(SourceK6CloudK6CloudEnum sourceType) { return this; } - public SourceK6Cloud(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceK6CloudK6CloudEnum sourceType) { - this.apiToken = apiToken; -this.sourceType = sourceType; + this.apiToken = apiToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceKlarna.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceKlarna.java index 8ce87b30e..50bd9a57e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceKlarna.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceKlarna.java @@ -57,12 +57,11 @@ public SourceKlarna withUsername(String username) { return this; } - public SourceKlarna(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("playground") Boolean playground, @JsonProperty("region") SourceKlarnaRegionEnum region, @JsonProperty("sourceType") SourceKlarnaKlarnaEnum sourceType) { - this.username = username; -this.password = password; -this.playground = playground; -this.region = region; -this.sourceType = sourceType; + this.username = username; + this.password = password; + this.playground = playground; + this.region = region; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceKlaviyo.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceKlaviyo.java index 254b236ec..c57d03689 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceKlaviyo.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceKlaviyo.java @@ -44,10 +44,9 @@ public SourceKlaviyo withStartDate(OffsetDateTime startDate) { return this; } - public SourceKlaviyo(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceKlaviyoKlaviyoEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceKustomerSinger.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceKustomerSinger.java index ef28cc8a4..1bc02d1a6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceKustomerSinger.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceKustomerSinger.java @@ -37,10 +37,9 @@ public SourceKustomerSinger withStartDate(String startDate) { return this; } - public SourceKustomerSinger(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceKustomerSingerKustomerSingerEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiToken = apiToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiToken = apiToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLaunchdarkly.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLaunchdarkly.java index 0dcd4adf5..ec58490dd 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLaunchdarkly.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLaunchdarkly.java @@ -27,9 +27,8 @@ public SourceLaunchdarkly withSourceType(SourceLaunchdarklyLaunchdarklyEnum sour return this; } - public SourceLaunchdarkly(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceLaunchdarklyLaunchdarklyEnum sourceType) { - this.accessToken = accessToken; -this.sourceType = sourceType; + this.accessToken = accessToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLemlist.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLemlist.java index df8f342cb..4b46703d0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLemlist.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLemlist.java @@ -27,9 +27,8 @@ public SourceLemlist withSourceType(SourceLemlistLemlistEnum sourceType) { return this; } - public SourceLemlist(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceLemlistLemlistEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAds.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAds.java index c10eec1df..fe5c0d2f7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAds.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAds.java @@ -51,9 +51,8 @@ public SourceLinkedinAds withStartDate(LocalDate startDate) { return this; } - public SourceLinkedinAds(@JsonProperty("sourceType") SourceLinkedinAdsLinkedinAdsEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.sourceType = sourceType; -this.startDate = startDate; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsAccessToken.java index 221027de1..bdeba3541 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsAccessToken.java @@ -27,8 +27,7 @@ public SourceLinkedinAdsCredentialsAccessToken withAuthMethod(SourceLinkedinAdsC return this; } - public SourceLinkedinAdsCredentialsAccessToken(@JsonProperty("access_token") String accessToken) { - this.accessToken = accessToken; + this.accessToken = accessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsOAuth20.java index 7ade12c9f..118eeecaf 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinAdsCredentialsOAuth20.java @@ -47,10 +47,9 @@ public SourceLinkedinAdsCredentialsOAuth20 withRefreshToken(String refreshToken) return this; } - public SourceLinkedinAdsCredentialsOAuth20(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPages.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPages.java index b0764c608..9220c69ae 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPages.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPages.java @@ -37,9 +37,8 @@ public SourceLinkedinPages withSourceType(SourceLinkedinPagesLinkedinPagesEnum s return this; } - public SourceLinkedinPages(@JsonProperty("org_id") String orgId, @JsonProperty("sourceType") SourceLinkedinPagesLinkedinPagesEnum sourceType) { - this.orgId = orgId; -this.sourceType = sourceType; + this.orgId = orgId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsAccessToken.java index 6792cec74..3b1dd1983 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsAccessToken.java @@ -27,8 +27,7 @@ public SourceLinkedinPagesCredentialsAccessToken withAuthMethod(SourceLinkedinPa return this; } - public SourceLinkedinPagesCredentialsAccessToken(@JsonProperty("access_token") String accessToken) { - this.accessToken = accessToken; + this.accessToken = accessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsOAuth20.java index 656f3dd45..77c0ecc33 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinkedinPagesCredentialsOAuth20.java @@ -47,10 +47,9 @@ public SourceLinkedinPagesCredentialsOAuth20 withRefreshToken(String refreshToke return this; } - public SourceLinkedinPagesCredentialsOAuth20(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinnworks.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinnworks.java index 1b6034647..bdf36e7a4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLinnworks.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLinnworks.java @@ -61,12 +61,11 @@ public SourceLinnworks withToken(String token) { return this; } - public SourceLinnworks(@JsonProperty("application_id") String applicationId, @JsonProperty("application_secret") String applicationSecret, @JsonProperty("sourceType") SourceLinnworksLinnworksEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("token") String token) { - this.applicationId = applicationId; -this.applicationSecret = applicationSecret; -this.sourceType = sourceType; -this.startDate = startDate; -this.token = token; + this.applicationId = applicationId; + this.applicationSecret = applicationSecret; + this.sourceType = sourceType; + this.startDate = startDate; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceLokalise.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceLokalise.java index 0722ffa4f..43fe6070f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceLokalise.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceLokalise.java @@ -37,10 +37,9 @@ public SourceLokalise withSourceType(SourceLokaliseLokaliseEnum sourceType) { return this; } - public SourceLokalise(@JsonProperty("api_key") String apiKey, @JsonProperty("project_id") String projectId, @JsonProperty("sourceType") SourceLokaliseLokaliseEnum sourceType) { - this.apiKey = apiKey; -this.projectId = projectId; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.projectId = projectId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimp.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimp.java index 53bef4412..0bcc79904 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimp.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimp.java @@ -35,8 +35,7 @@ public SourceMailchimp withSourceType(SourceMailchimpMailchimpEnum sourceType) { return this; } - public SourceMailchimp(@JsonProperty("sourceType") SourceMailchimpMailchimpEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsAPIKey.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsAPIKey.java index fc0ce4f7f..7d90860d1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsAPIKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsAPIKey.java @@ -24,9 +24,8 @@ public SourceMailchimpCredentialsAPIKey withAuthType(SourceMailchimpCredentialsA return this; } - public SourceMailchimpCredentialsAPIKey(@JsonProperty("apikey") String apikey, @JsonProperty("auth_type") SourceMailchimpCredentialsAPIKeyAuthTypeEnum authType) { - this.apikey = apikey; -this.authType = authType; + this.apikey = apikey; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsOAuth20.java index 2a8810e0e..e78be486c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailchimpCredentialsOAuth20.java @@ -48,9 +48,8 @@ public SourceMailchimpCredentialsOAuth20 withClientSecret(String clientSecret) { return this; } - public SourceMailchimpCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_type") SourceMailchimpCredentialsOAuth20AuthTypeEnum authType) { - this.accessToken = accessToken; -this.authType = authType; + this.accessToken = accessToken; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailgun.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailgun.java index d43e20588..e2d27ed28 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailgun.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailgun.java @@ -58,9 +58,8 @@ public SourceMailgun withStartDate(OffsetDateTime startDate) { return this; } - public SourceMailgun(@JsonProperty("private_key") String privateKey, @JsonProperty("sourceType") SourceMailgunMailgunEnum sourceType) { - this.privateKey = privateKey; -this.sourceType = sourceType; + this.privateKey = privateKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailjetSms.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailjetSms.java index 9fd5c04a6..d3f0fbbed 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMailjetSms.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMailjetSms.java @@ -51,9 +51,8 @@ public SourceMailjetSms withToken(String token) { return this; } - public SourceMailjetSms(@JsonProperty("sourceType") SourceMailjetSmsMailjetSmsEnum sourceType, @JsonProperty("token") String token) { - this.sourceType = sourceType; -this.token = token; + this.sourceType = sourceType; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMarketo.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMarketo.java index fa4e5d7ad..704c22317 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMarketo.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMarketo.java @@ -64,12 +64,11 @@ public SourceMarketo withStartDate(OffsetDateTime startDate) { return this; } - public SourceMarketo(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("domain_url") String domainUrl, @JsonProperty("sourceType") SourceMarketoMarketoEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.domainUrl = domainUrl; -this.sourceType = sourceType; -this.startDate = startDate; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.domainUrl = domainUrl; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMetabase.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMetabase.java index 64d4d0c4a..8f19f7b61 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMetabase.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMetabase.java @@ -61,9 +61,8 @@ public SourceMetabase withUsername(String username) { return this; } - public SourceMetabase(@JsonProperty("instance_api_url") String instanceApiUrl, @JsonProperty("sourceType") SourceMetabaseMetabaseEnum sourceType) { - this.instanceApiUrl = instanceApiUrl; -this.sourceType = sourceType; + this.instanceApiUrl = instanceApiUrl; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeams.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeams.java index 5d03e2226..f95668ebd 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeams.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeams.java @@ -40,9 +40,8 @@ public SourceMicrosoftTeams withSourceType(SourceMicrosoftTeamsMicrosoftTeamsEnu return this; } - public SourceMicrosoftTeams(@JsonProperty("period") String period, @JsonProperty("sourceType") SourceMicrosoftTeamsMicrosoftTeamsEnum sourceType) { - this.period = period; -this.sourceType = sourceType; + this.period = period; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft.java index 9325af8be..7cc882927 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft.java @@ -50,10 +50,9 @@ public SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft withTenantId(Stri return this; } - public SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoft(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("tenant_id") String tenantId) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.tenantId = tenantId; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.tenantId = tenantId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20.java index 01e19a602..594b127f4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20.java @@ -60,11 +60,10 @@ public SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20 withTenant return this; } - public SourceMicrosoftTeamsCredentialsAuthenticateViaMicrosoftOAuth20(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("tenant_id") String tenantId) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.tenantId = tenantId; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.tenantId = tenantId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanel.java index 5d04fb522..36970d2d1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanel.java @@ -127,8 +127,7 @@ public SourceMixpanel withStartDate(OffsetDateTime startDate) { return this; } - public SourceMixpanel(@JsonProperty("sourceType") SourceMixpanelMixpanelEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsProjectSecret.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsProjectSecret.java index 68cf6e25b..cdb5dbb34 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsProjectSecret.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsProjectSecret.java @@ -30,8 +30,7 @@ public SourceMixpanelCredentialsProjectSecret withOptionTitle(SourceMixpanelCred return this; } - public SourceMixpanelCredentialsProjectSecret(@JsonProperty("api_secret") String apiSecret) { - this.apiSecret = apiSecret; + this.apiSecret = apiSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsServiceAccount.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsServiceAccount.java index 2e4d49be7..9e9b1445b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsServiceAccount.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMixpanelCredentialsServiceAccount.java @@ -40,9 +40,8 @@ public SourceMixpanelCredentialsServiceAccount withUsername(String username) { return this; } - public SourceMixpanelCredentialsServiceAccount(@JsonProperty("secret") String secret, @JsonProperty("username") String username) { - this.secret = secret; -this.username = username; + this.secret = secret; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMonday.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMonday.java index 3e1d08824..0399908c9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMonday.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMonday.java @@ -27,8 +27,7 @@ public SourceMonday withSourceType(SourceMondayMondayEnum sourceType) { return this; } - public SourceMonday(@JsonProperty("sourceType") SourceMondayMondayEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsAPIToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsAPIToken.java index a997702ba..0b7a35b00 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsAPIToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsAPIToken.java @@ -24,9 +24,8 @@ public SourceMondayCredentialsAPIToken withAuthType(SourceMondayCredentialsAPITo return this; } - public SourceMondayCredentialsAPIToken(@JsonProperty("api_token") String apiToken, @JsonProperty("auth_type") SourceMondayCredentialsAPITokenAuthTypeEnum authType) { - this.apiToken = apiToken; -this.authType = authType; + this.apiToken = apiToken; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsOAuth20.java index 17cc7be13..a5398003a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMondayCredentialsOAuth20.java @@ -57,11 +57,10 @@ public SourceMondayCredentialsOAuth20 withSubdomain(String subdomain) { return this; } - public SourceMondayCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_type") SourceMondayCredentialsOAuth20AuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret) { - this.accessToken = accessToken; -this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; + this.accessToken = accessToken; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodb.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodb.java index 81f273b8c..ef2a75973 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodb.java @@ -73,9 +73,8 @@ public SourceMongodb withUser(String user) { return this; } - public SourceMongodb(@JsonProperty("database") String database, @JsonProperty("sourceType") SourceMongodbMongodbEnum sourceType) { - this.database = database; -this.sourceType = sourceType; + this.database = database; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeMongoDBAtlas.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeMongoDBAtlas.java index 024cba704..492cfc276 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeMongoDBAtlas.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeMongoDBAtlas.java @@ -27,9 +27,8 @@ public SourceMongodbInstanceTypeMongoDBAtlas withInstance(SourceMongodbInstanceT return this; } - public SourceMongodbInstanceTypeMongoDBAtlas(@JsonProperty("cluster_url") String clusterUrl, @JsonProperty("instance") SourceMongodbInstanceTypeMongoDBAtlasInstanceEnum instance) { - this.clusterUrl = clusterUrl; -this.instance = instance; + this.clusterUrl = clusterUrl; + this.instance = instance; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeReplicaSet.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeReplicaSet.java index 0147f7fd0..465098cb7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeReplicaSet.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeReplicaSet.java @@ -40,9 +40,8 @@ public SourceMongodbInstanceTypeReplicaSet withServerAddresses(String serverAddr return this; } - public SourceMongodbInstanceTypeReplicaSet(@JsonProperty("instance") SourceMongodbInstanceTypeReplicaSetInstanceEnum instance, @JsonProperty("server_addresses") String serverAddresses) { - this.instance = instance; -this.serverAddresses = serverAddresses; + this.instance = instance; + this.serverAddresses = serverAddresses; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeStandaloneMongoDbInstance.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeStandaloneMongoDbInstance.java index 7ef8749e1..0068ef871 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeStandaloneMongoDbInstance.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMongodbInstanceTypeStandaloneMongoDbInstance.java @@ -37,10 +37,9 @@ public SourceMongodbInstanceTypeStandaloneMongoDbInstance withPort(Long port) { return this; } - public SourceMongodbInstanceTypeStandaloneMongoDbInstance(@JsonProperty("host") String host, @JsonProperty("instance") SourceMongodbInstanceTypeStandaloneMongoDbInstanceInstanceEnum instance, @JsonProperty("port") Long port) { - this.host = host; -this.instance = instance; -this.port = port; + this.host = host; + this.instance = instance; + this.port = port; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssql.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssql.java index 7eddeeb43..6d4a99b31 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssql.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssql.java @@ -125,12 +125,11 @@ public SourceMssql withUsername(String username) { return this; } - public SourceMssql(@JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceMssqlMssqlEnum sourceType, @JsonProperty("username") String username) { - this.database = database; -this.host = host; -this.port = port; -this.sourceType = sourceType; -this.username = username; + this.database = database; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodLogicalReplicationCDC.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodLogicalReplicationCDC.java index 92adb4fb8..009973dfc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodLogicalReplicationCDC.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodLogicalReplicationCDC.java @@ -52,8 +52,7 @@ public SourceMssqlReplicationMethodLogicalReplicationCDC withSnapshotIsolation(S return this; } - public SourceMssqlReplicationMethodLogicalReplicationCDC(@JsonProperty("method") SourceMssqlReplicationMethodLogicalReplicationCDCMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodStandard.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodStandard.java index 3cc386b9c..572e11f0f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodStandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlReplicationMethodStandard.java @@ -17,8 +17,7 @@ public SourceMssqlReplicationMethodStandard withMethod(SourceMssqlReplicationMet return this; } - public SourceMssqlReplicationMethodStandard(@JsonProperty("method") SourceMssqlReplicationMethodStandardMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedTrustServerCertificate.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedTrustServerCertificate.java index 4d3ecb653..87d28e261 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedTrustServerCertificate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedTrustServerCertificate.java @@ -17,8 +17,7 @@ public SourceMssqlSslMethodEncryptedTrustServerCertificate withSslMethod(SourceM return this; } - public SourceMssqlSslMethodEncryptedTrustServerCertificate(@JsonProperty("ssl_method") SourceMssqlSslMethodEncryptedTrustServerCertificateSslMethodEnum sslMethod) { - this.sslMethod = sslMethod; + this.sslMethod = sslMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedVerifyCertificate.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedVerifyCertificate.java index b2780f856..cf814d525 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedVerifyCertificate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlSslMethodEncryptedVerifyCertificate.java @@ -30,8 +30,7 @@ public SourceMssqlSslMethodEncryptedVerifyCertificate withSslMethod(SourceMssqlS return this; } - public SourceMssqlSslMethodEncryptedVerifyCertificate(@JsonProperty("ssl_method") SourceMssqlSslMethodEncryptedVerifyCertificateSslMethodEnum sslMethod) { - this.sslMethod = sslMethod; + this.sslMethod = sslMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodNoTunnel.java index 4ff878bfb..b3ac09e56 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public SourceMssqlTunnelMethodNoTunnel withTunnelMethod(SourceMssqlTunnelMethodN return this; } - public SourceMssqlTunnelMethodNoTunnel(@JsonProperty("tunnel_method") SourceMssqlTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodPasswordAuthentication.java index 3458ee690..6f81a294d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public SourceMssqlTunnelMethodPasswordAuthentication withTunnelUserPassword(Stri return this; } - public SourceMssqlTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceMssqlTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodSSHKeyAuthentication.java index d3f1249d3..b1ab0ae9e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMssqlTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public SourceMssqlTunnelMethodSSHKeyAuthentication withTunnelUser(String tunnelU return this; } - public SourceMssqlTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceMssqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMyHours.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMyHours.java index eaa2df7e4..fe4c4aa80 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMyHours.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMyHours.java @@ -60,11 +60,10 @@ public SourceMyHours withStartDate(String startDate) { return this; } - public SourceMyHours(@JsonProperty("email") String email, @JsonProperty("password") String password, @JsonProperty("sourceType") SourceMyHoursMyHoursEnum sourceType, @JsonProperty("start_date") String startDate) { - this.email = email; -this.password = password; -this.sourceType = sourceType; -this.startDate = startDate; + this.email = email; + this.password = password; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysql.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysql.java index 436db4c28..6bcbc4ecb 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysql.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysql.java @@ -113,13 +113,12 @@ public SourceMysql withUsername(String username) { return this; } - public SourceMysql(@JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("replication_method") Object replicationMethod, @JsonProperty("sourceType") SourceMysqlMysqlEnum sourceType, @JsonProperty("username") String username) { - this.database = database; -this.host = host; -this.port = port; -this.replicationMethod = replicationMethod; -this.sourceType = sourceType; -this.username = username; + this.database = database; + this.host = host; + this.port = port; + this.replicationMethod = replicationMethod; + this.sourceType = sourceType; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodLogicalReplicationCDC.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodLogicalReplicationCDC.java index e09161965..924614b0b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodLogicalReplicationCDC.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodLogicalReplicationCDC.java @@ -41,8 +41,7 @@ public SourceMysqlReplicationMethodLogicalReplicationCDC withServerTimeZone(Stri return this; } - public SourceMysqlReplicationMethodLogicalReplicationCDC(@JsonProperty("method") SourceMysqlReplicationMethodLogicalReplicationCDCMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodStandard.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodStandard.java index 400079424..185efff46 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodStandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlReplicationMethodStandard.java @@ -17,8 +17,7 @@ public SourceMysqlReplicationMethodStandard withMethod(SourceMysqlReplicationMet return this; } - public SourceMysqlReplicationMethodStandard(@JsonProperty("method") SourceMysqlReplicationMethodStandardMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModePreferred.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModePreferred.java index e55f5ee4f..2dc1c761d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModePreferred.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModePreferred.java @@ -17,8 +17,7 @@ public SourceMysqlSslModePreferred withMode(SourceMysqlSslModePreferredModeEnum return this; } - public SourceMysqlSslModePreferred(@JsonProperty("mode") SourceMysqlSslModePreferredModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeRequired.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeRequired.java index 5353dcf37..9dd1e118e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeRequired.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeRequired.java @@ -17,8 +17,7 @@ public SourceMysqlSslModeRequired withMode(SourceMysqlSslModeRequiredModeEnum mo return this; } - public SourceMysqlSslModeRequired(@JsonProperty("mode") SourceMysqlSslModeRequiredModeEnum mode) { - this.mode = mode; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyCA.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyCA.java index de28b92e8..0f466deb6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyCA.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyCA.java @@ -62,9 +62,8 @@ public SourceMysqlSslModeVerifyCA withMode(SourceMysqlSslModeVerifyCAModeEnum mo return this; } - public SourceMysqlSslModeVerifyCA(@JsonProperty("ca_certificate") String caCertificate, @JsonProperty("mode") SourceMysqlSslModeVerifyCAModeEnum mode) { - this.caCertificate = caCertificate; -this.mode = mode; + this.caCertificate = caCertificate; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyIdentity.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyIdentity.java index 85bcc7866..0c62c0978 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyIdentity.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlSslModeVerifyIdentity.java @@ -62,9 +62,8 @@ public SourceMysqlSslModeVerifyIdentity withMode(SourceMysqlSslModeVerifyIdentit return this; } - public SourceMysqlSslModeVerifyIdentity(@JsonProperty("ca_certificate") String caCertificate, @JsonProperty("mode") SourceMysqlSslModeVerifyIdentityModeEnum mode) { - this.caCertificate = caCertificate; -this.mode = mode; + this.caCertificate = caCertificate; + this.mode = mode; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodNoTunnel.java index 5040cf910..8d548f451 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public SourceMysqlTunnelMethodNoTunnel withTunnelMethod(SourceMysqlTunnelMethodN return this; } - public SourceMysqlTunnelMethodNoTunnel(@JsonProperty("tunnel_method") SourceMysqlTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodPasswordAuthentication.java index f2c570b99..0086a6b99 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public SourceMysqlTunnelMethodPasswordAuthentication withTunnelUserPassword(Stri return this; } - public SourceMysqlTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceMysqlTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodSSHKeyAuthentication.java index 4b813cadd..38d8bff8e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceMysqlTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public SourceMysqlTunnelMethodSSHKeyAuthentication withTunnelUser(String tunnelU return this; } - public SourceMysqlTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceMysqlTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceNetsuite.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceNetsuite.java index ec00ab4eb..aa66a0ffb 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceNetsuite.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceNetsuite.java @@ -101,14 +101,13 @@ public SourceNetsuite withWindowInDays(Long windowInDays) { return this; } - public SourceNetsuite(@JsonProperty("consumer_key") String consumerKey, @JsonProperty("consumer_secret") String consumerSecret, @JsonProperty("realm") String realm, @JsonProperty("sourceType") SourceNetsuiteNetsuiteEnum sourceType, @JsonProperty("start_datetime") String startDatetime, @JsonProperty("token_key") String tokenKey, @JsonProperty("token_secret") String tokenSecret) { - this.consumerKey = consumerKey; -this.consumerSecret = consumerSecret; -this.realm = realm; -this.sourceType = sourceType; -this.startDatetime = startDatetime; -this.tokenKey = tokenKey; -this.tokenSecret = tokenSecret; + this.consumerKey = consumerKey; + this.consumerSecret = consumerSecret; + this.realm = realm; + this.sourceType = sourceType; + this.startDatetime = startDatetime; + this.tokenKey = tokenKey; + this.tokenSecret = tokenSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceNotion.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceNotion.java index d703a3c97..3fcadf98c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceNotion.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceNotion.java @@ -47,9 +47,8 @@ public SourceNotion withStartDate(OffsetDateTime startDate) { return this; } - public SourceNotion(@JsonProperty("sourceType") SourceNotionNotionEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.sourceType = sourceType; -this.startDate = startDate; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsAccessToken.java index d5d5b6209..fdfdf08bf 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsAccessToken.java @@ -27,9 +27,8 @@ public SourceNotionCredentialsAccessToken withToken(String token) { return this; } - public SourceNotionCredentialsAccessToken(@JsonProperty("auth_type") SourceNotionCredentialsAccessTokenAuthTypeEnum authType, @JsonProperty("token") String token) { - this.authType = authType; -this.token = token; + this.authType = authType; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsOAuth20.java index 317601c9c..a3de7e8dc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceNotionCredentialsOAuth20.java @@ -47,11 +47,10 @@ public SourceNotionCredentialsOAuth20 withClientSecret(String clientSecret) { return this; } - public SourceNotionCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_type") SourceNotionCredentialsOAuth20AuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret) { - this.accessToken = accessToken; -this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; + this.accessToken = accessToken; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceNytimes.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceNytimes.java index f14ca61fd..cb074c790 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceNytimes.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceNytimes.java @@ -75,11 +75,10 @@ public SourceNytimes withStartDate(LocalDate startDate) { return this; } - public SourceNytimes(@JsonProperty("api_key") String apiKey, @JsonProperty("period") SourceNytimesPeriodUsedForMostPopularStreamsEnum period, @JsonProperty("sourceType") SourceNytimesNytimesEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.apiKey = apiKey; -this.period = period; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.period = period; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOkta.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOkta.java index e2e261bca..ddff6a547 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOkta.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOkta.java @@ -49,8 +49,7 @@ public SourceOkta withStartDate(String startDate) { return this; } - public SourceOkta(@JsonProperty("sourceType") SourceOktaOktaEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsAPIToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsAPIToken.java index 5c5127c51..9b8a69e4e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsAPIToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsAPIToken.java @@ -24,9 +24,8 @@ public SourceOktaCredentialsAPIToken withAuthType(SourceOktaCredentialsAPITokenA return this; } - public SourceOktaCredentialsAPIToken(@JsonProperty("api_token") String apiToken, @JsonProperty("auth_type") SourceOktaCredentialsAPITokenAuthTypeEnum authType) { - this.apiToken = apiToken; -this.authType = authType; + this.apiToken = apiToken; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsOAuth20.java index a464569ac..2739efd0a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOktaCredentialsOAuth20.java @@ -44,11 +44,10 @@ public SourceOktaCredentialsOAuth20 withRefreshToken(String refreshToken) { return this; } - public SourceOktaCredentialsOAuth20(@JsonProperty("auth_type") SourceOktaCredentialsOAuth20AuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOmnisend.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOmnisend.java index fa4c0d0a6..31b2c9d27 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOmnisend.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOmnisend.java @@ -27,9 +27,8 @@ public SourceOmnisend withSourceType(SourceOmnisendOmnisendEnum sourceType) { return this; } - public SourceOmnisend(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceOmnisendOmnisendEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignal.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignal.java index c06166144..f0c895f84 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignal.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignal.java @@ -64,12 +64,11 @@ public SourceOnesignal withUserAuthKey(String userAuthKey) { return this; } - public SourceOnesignal(@JsonProperty("applications") SourceOnesignalApplications[] applications, @JsonProperty("outcome_names") String outcomeNames, @JsonProperty("sourceType") SourceOnesignalOnesignalEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("user_auth_key") String userAuthKey) { - this.applications = applications; -this.outcomeNames = outcomeNames; -this.sourceType = sourceType; -this.startDate = startDate; -this.userAuthKey = userAuthKey; + this.applications = applications; + this.outcomeNames = outcomeNames; + this.sourceType = sourceType; + this.startDate = startDate; + this.userAuthKey = userAuthKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignalApplications.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignalApplications.java index b97448e4b..21cbb0f94 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignalApplications.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOnesignalApplications.java @@ -31,9 +31,8 @@ public SourceOnesignalApplications withAppName(String appName) { return this; } - public SourceOnesignalApplications(@JsonProperty("app_api_key") String appApiKey, @JsonProperty("app_id") String appId) { - this.appApiKey = appApiKey; -this.appId = appId; + this.appApiKey = appApiKey; + this.appId = appId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOpenweather.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOpenweather.java index fc81a241b..563925c2b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOpenweather.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOpenweather.java @@ -71,11 +71,10 @@ public SourceOpenweather withUnits(SourceOpenweatherUnitsEnum units) { return this; } - public SourceOpenweather(@JsonProperty("appid") String appid, @JsonProperty("lat") String lat, @JsonProperty("lon") String lon, @JsonProperty("sourceType") SourceOpenweatherOpenweatherEnum sourceType) { - this.appid = appid; -this.lat = lat; -this.lon = lon; -this.sourceType = sourceType; + this.appid = appid; + this.lat = lat; + this.lon = lon; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracle.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracle.java index db1ac1d0a..026e65a2f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracle.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracle.java @@ -117,12 +117,11 @@ public SourceOracle withUsername(String username) { return this; } - public SourceOracle(@JsonProperty("encryption") Object encryption, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceOracleOracleEnum sourceType, @JsonProperty("username") String username) { - this.encryption = encryption; -this.host = host; -this.port = port; -this.sourceType = sourceType; -this.username = username; + this.encryption = encryption; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataServiceName.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataServiceName.java index b661dc448..2daa0ec05 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataServiceName.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataServiceName.java @@ -27,8 +27,7 @@ public SourceOracleConnectionDataServiceName withServiceName(String serviceName) return this; } - public SourceOracleConnectionDataServiceName(@JsonProperty("service_name") String serviceName) { - this.serviceName = serviceName; + this.serviceName = serviceName; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataSystemIDSID.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataSystemIDSID.java index 3481e33a2..0fbee83a9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataSystemIDSID.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleConnectionDataSystemIDSID.java @@ -27,8 +27,7 @@ public SourceOracleConnectionDataSystemIDSID withSid(String sid) { return this; } - public SourceOracleConnectionDataSystemIDSID(@JsonProperty("sid") String sid) { - this.sid = sid; + this.sid = sid; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionNativeNetworkEncryptionNNE.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionNativeNetworkEncryptionNNE.java index 67e8c8956..10c2db187 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionNativeNetworkEncryptionNNE.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionNativeNetworkEncryptionNNE.java @@ -30,8 +30,7 @@ public SourceOracleEncryptionNativeNetworkEncryptionNNE withEncryptionMethod(Sou return this; } - public SourceOracleEncryptionNativeNetworkEncryptionNNE(@JsonProperty("encryption_method") SourceOracleEncryptionNativeNetworkEncryptionNNEEncryptionMethodEnum encryptionMethod) { - this.encryptionMethod = encryptionMethod; + this.encryptionMethod = encryptionMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionTLSEncryptedVerifyCertificate.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionTLSEncryptedVerifyCertificate.java index b31034108..2292aafa2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionTLSEncryptedVerifyCertificate.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleEncryptionTLSEncryptedVerifyCertificate.java @@ -27,9 +27,8 @@ public SourceOracleEncryptionTLSEncryptedVerifyCertificate withSslCertificate(St return this; } - public SourceOracleEncryptionTLSEncryptedVerifyCertificate(@JsonProperty("encryption_method") SourceOracleEncryptionTLSEncryptedVerifyCertificateEncryptionMethodEnum encryptionMethod, @JsonProperty("ssl_certificate") String sslCertificate) { - this.encryptionMethod = encryptionMethod; -this.sslCertificate = sslCertificate; + this.encryptionMethod = encryptionMethod; + this.sslCertificate = sslCertificate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodNoTunnel.java index 8caf8c916..5d4ca741b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public SourceOracleTunnelMethodNoTunnel withTunnelMethod(SourceOracleTunnelMetho return this; } - public SourceOracleTunnelMethodNoTunnel(@JsonProperty("tunnel_method") SourceOracleTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodPasswordAuthentication.java index f31b736cb..27d543b50 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public SourceOracleTunnelMethodPasswordAuthentication withTunnelUserPassword(Str return this; } - public SourceOracleTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceOracleTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodSSHKeyAuthentication.java index 408accd74..8d4891055 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOracleTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public SourceOracleTunnelMethodSSHKeyAuthentication withTunnelUser(String tunnel return this; } - public SourceOracleTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourceOracleTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOrb.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOrb.java index b41a9efdd..a241d64b6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOrb.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOrb.java @@ -94,10 +94,9 @@ public SourceOrb withSubscriptionUsageGroupingKey(String subscriptionUsageGroupi return this; } - public SourceOrb(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceOrbOrbEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOrbit.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOrbit.java index 38d27a9d5..4b92e815d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOrbit.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOrbit.java @@ -50,10 +50,9 @@ public SourceOrbit withWorkspace(String workspace) { return this; } - public SourceOrbit(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceOrbitOrbitEnum sourceType, @JsonProperty("workspace") String workspace) { - this.apiToken = apiToken; -this.sourceType = sourceType; -this.workspace = workspace; + this.apiToken = apiToken; + this.sourceType = sourceType; + this.workspace = workspace; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceOutreach.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceOutreach.java index d62b11248..c4c4134aa 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceOutreach.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceOutreach.java @@ -67,13 +67,12 @@ public SourceOutreach withStartDate(String startDate) { return this; } - public SourceOutreach(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("redirect_uri") String redirectUri, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceOutreachOutreachEnum sourceType, @JsonProperty("start_date") String startDate) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.redirectUri = redirectUri; -this.refreshToken = refreshToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.redirectUri = redirectUri; + this.refreshToken = refreshToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePaypalTransaction.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePaypalTransaction.java index b533f1864..e6ee349c6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePaypalTransaction.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePaypalTransaction.java @@ -72,10 +72,9 @@ public SourcePaypalTransaction withStartDate(String startDate) { return this; } - public SourcePaypalTransaction(@JsonProperty("is_sandbox") Boolean isSandbox, @JsonProperty("sourceType") SourcePaypalTransactionPaypalTransactionEnum sourceType, @JsonProperty("start_date") String startDate) { - this.isSandbox = isSandbox; -this.sourceType = sourceType; -this.startDate = startDate; + this.isSandbox = isSandbox; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePaystack.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePaystack.java index 7654097b3..794a9b4e6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePaystack.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePaystack.java @@ -57,10 +57,9 @@ public SourcePaystack withStartDate(OffsetDateTime startDate) { return this; } - public SourcePaystack(@JsonProperty("secret_key") String secretKey, @JsonProperty("sourceType") SourcePaystackPaystackEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.secretKey = secretKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.secretKey = secretKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePendo.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePendo.java index cc3155321..7dc70c986 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePendo.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePendo.java @@ -24,9 +24,8 @@ public SourcePendo withSourceType(SourcePendoPendoEnum sourceType) { return this; } - public SourcePendo(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourcePendoPendoEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePersistiq.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePersistiq.java index 6e1c5c94b..ab4031b76 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePersistiq.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePersistiq.java @@ -27,9 +27,8 @@ public SourcePersistiq withSourceType(SourcePersistiqPersistiqEnum sourceType) { return this; } - public SourcePersistiq(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourcePersistiqPersistiqEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePexelsApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePexelsApi.java index 9fcdcf109..98ddcfb7c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePexelsApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePexelsApi.java @@ -83,10 +83,9 @@ public SourcePexelsApi withSourceType(SourcePexelsApiPexelsApiEnum sourceType) { return this; } - public SourcePexelsApi(@JsonProperty("api_key") String apiKey, @JsonProperty("query") String query, @JsonProperty("sourceType") SourcePexelsApiPexelsApiEnum sourceType) { - this.apiKey = apiKey; -this.query = query; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.query = query; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterest.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterest.java index 82cf34f0f..f347bafd6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterest.java @@ -48,9 +48,8 @@ public SourcePinterest withStatus(SourcePinterestStatusEnum[] status) { return this; } - public SourcePinterest(@JsonProperty("sourceType") SourcePinterestPinterestEnum sourceType, @JsonProperty("start_date") String startDate) { - this.sourceType = sourceType; -this.startDate = startDate; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsAccessToken.java index 54130595e..dbe9cfdac 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsAccessToken.java @@ -24,9 +24,8 @@ public SourcePinterestCredentialsAccessToken withAuthMethod(SourcePinterestCrede return this; } - public SourcePinterestCredentialsAccessToken(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_method") SourcePinterestCredentialsAccessTokenAuthMethodEnum authMethod) { - this.accessToken = accessToken; -this.authMethod = authMethod; + this.accessToken = accessToken; + this.authMethod = authMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsOAuth20.java index 64c6d8090..44cd65e72 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePinterestCredentialsOAuth20.java @@ -48,9 +48,8 @@ public SourcePinterestCredentialsOAuth20 withRefreshToken(String refreshToken) { return this; } - public SourcePinterestCredentialsOAuth20(@JsonProperty("auth_method") SourcePinterestCredentialsOAuth20AuthMethodEnum authMethod, @JsonProperty("refresh_token") String refreshToken) { - this.authMethod = authMethod; -this.refreshToken = refreshToken; + this.authMethod = authMethod; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedrive.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedrive.java index 0332e91ef..089973904 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedrive.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedrive.java @@ -44,9 +44,8 @@ public SourcePipedrive withSourceType(SourcePipedrivePipedriveEnum sourceType) { return this; } - public SourcePipedrive(@JsonProperty("replication_start_date") OffsetDateTime replicationStartDate, @JsonProperty("sourceType") SourcePipedrivePipedriveEnum sourceType) { - this.replicationStartDate = replicationStartDate; -this.sourceType = sourceType; + this.replicationStartDate = replicationStartDate; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedriveAPIKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedriveAPIKeyAuthentication.java index bbc142d8e..9b8774897 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedriveAPIKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePipedriveAPIKeyAuthentication.java @@ -24,9 +24,8 @@ public SourcePipedriveAPIKeyAuthentication withAuthType(SourcePipedriveAPIKeyAut return this; } - public SourcePipedriveAPIKeyAuthentication(@JsonProperty("api_token") String apiToken, @JsonProperty("auth_type") SourcePipedriveAPIKeyAuthenticationAuthTypeEnum authType) { - this.apiToken = apiToken; -this.authType = authType; + this.apiToken = apiToken; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePocket.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePocket.java index a7753fa59..e00177f64 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePocket.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePocket.java @@ -138,10 +138,9 @@ public SourcePocket withTag(String tag) { return this; } - public SourcePocket(@JsonProperty("access_token") String accessToken, @JsonProperty("consumer_key") String consumerKey, @JsonProperty("sourceType") SourcePocketPocketEnum sourceType) { - this.accessToken = accessToken; -this.consumerKey = consumerKey; -this.sourceType = sourceType; + this.accessToken = accessToken; + this.consumerKey = consumerKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePokeapi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePokeapi.java index 857594242..989492984 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePokeapi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePokeapi.java @@ -27,9 +27,8 @@ public SourcePokeapi withSourceType(SourcePokeapiPokeapiEnum sourceType) { return this; } - public SourcePokeapi(@JsonProperty("pokemon_name") String pokemonName, @JsonProperty("sourceType") SourcePokeapiPokeapiEnum sourceType) { - this.pokemonName = pokemonName; -this.sourceType = sourceType; + this.pokemonName = pokemonName; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePolygonStockApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePolygonStockApi.java index d597096a5..ab2177d0f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePolygonStockApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePolygonStockApi.java @@ -116,14 +116,13 @@ public SourcePolygonStockApi withTimespan(String timespan) { return this; } - public SourcePolygonStockApi(@JsonProperty("apiKey") String apiKey, @JsonProperty("end_date") LocalDate endDate, @JsonProperty("multiplier") Long multiplier, @JsonProperty("sourceType") SourcePolygonStockApiPolygonStockApiEnum sourceType, @JsonProperty("start_date") LocalDate startDate, @JsonProperty("stocksTicker") String stocksTicker, @JsonProperty("timespan") String timespan) { - this.apiKey = apiKey; -this.endDate = endDate; -this.multiplier = multiplier; -this.sourceType = sourceType; -this.startDate = startDate; -this.stocksTicker = stocksTicker; -this.timespan = timespan; + this.apiKey = apiKey; + this.endDate = endDate; + this.multiplier = multiplier; + this.sourceType = sourceType; + this.startDate = startDate; + this.stocksTicker = stocksTicker; + this.timespan = timespan; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgres.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgres.java index fee4b6090..827108058 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgres.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgres.java @@ -126,12 +126,11 @@ public SourcePostgres withUsername(String username) { return this; } - public SourcePostgres(@JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourcePostgresPostgresEnum sourceType, @JsonProperty("username") String username) { - this.database = database; -this.host = host; -this.port = port; -this.sourceType = sourceType; -this.username = username; + this.database = database; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresReplicationMethodStandard.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresReplicationMethodStandard.java index 54a78399a..d2fe51f8b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresReplicationMethodStandard.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresReplicationMethodStandard.java @@ -17,8 +17,7 @@ public SourcePostgresReplicationMethodStandard withMethod(SourcePostgresReplicat return this; } - public SourcePostgresReplicationMethodStandard(@JsonProperty("method") SourcePostgresReplicationMethodStandardMethodEnum method) { - this.method = method; + this.method = method; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodNoTunnel.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodNoTunnel.java index 131a07e57..d05dc0a87 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodNoTunnel.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodNoTunnel.java @@ -20,8 +20,7 @@ public SourcePostgresTunnelMethodNoTunnel withTunnelMethod(SourcePostgresTunnelM return this; } - public SourcePostgresTunnelMethodNoTunnel(@JsonProperty("tunnel_method") SourcePostgresTunnelMethodNoTunnelTunnelMethodEnum tunnelMethod) { - this.tunnelMethod = tunnelMethod; + this.tunnelMethod = tunnelMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodPasswordAuthentication.java index d5617a7a9..850617bbe 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodPasswordAuthentication.java @@ -60,12 +60,11 @@ public SourcePostgresTunnelMethodPasswordAuthentication withTunnelUserPassword(S return this; } - public SourcePostgresTunnelMethodPasswordAuthentication(@JsonProperty("tunnel_user") String tunnelUser, @JsonProperty("tunnel_user_password") String tunnelUserPassword, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourcePostgresTunnelMethodPasswordAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort) { - this.tunnelUser = tunnelUser; -this.tunnelUserPassword = tunnelUserPassword; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; + this.tunnelUserPassword = tunnelUserPassword; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodSSHKeyAuthentication.java index d9452801d..2c8bc20b4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostgresTunnelMethodSSHKeyAuthentication.java @@ -60,12 +60,11 @@ public SourcePostgresTunnelMethodSSHKeyAuthentication withTunnelUser(String tunn return this; } - public SourcePostgresTunnelMethodSSHKeyAuthentication(@JsonProperty("ssh_key") String sshKey, @JsonProperty("tunnel_host") String tunnelHost, @JsonProperty("tunnel_method") SourcePostgresTunnelMethodSSHKeyAuthenticationTunnelMethodEnum tunnelMethod, @JsonProperty("tunnel_port") Long tunnelPort, @JsonProperty("tunnel_user") String tunnelUser) { - this.sshKey = sshKey; -this.tunnelHost = tunnelHost; -this.tunnelMethod = tunnelMethod; -this.tunnelPort = tunnelPort; -this.tunnelUser = tunnelUser; + this.sshKey = sshKey; + this.tunnelHost = tunnelHost; + this.tunnelMethod = tunnelMethod; + this.tunnelPort = tunnelPort; + this.tunnelUser = tunnelUser; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePosthog.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePosthog.java index 91cfd5503..923597d36 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePosthog.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePosthog.java @@ -57,10 +57,9 @@ public SourcePosthog withStartDate(OffsetDateTime startDate) { return this; } - public SourcePosthog(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourcePosthogPosthogEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostmarkapp.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostmarkapp.java index a204b0b53..56c9d4d29 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePostmarkapp.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePostmarkapp.java @@ -37,10 +37,9 @@ public SourcePostmarkapp withSourceType(SourcePostmarkappPostmarkappEnum sourceT return this; } - public SourcePostmarkapp(@JsonProperty("X-Postmark-Account-Token") String xPostmarkAccountToken, @JsonProperty("X-Postmark-Server-Token") String xPostmarkServerToken, @JsonProperty("sourceType") SourcePostmarkappPostmarkappEnum sourceType) { - this.xPostmarkAccountToken = xPostmarkAccountToken; -this.xPostmarkServerToken = xPostmarkServerToken; -this.sourceType = sourceType; + this.xPostmarkAccountToken = xPostmarkAccountToken; + this.xPostmarkServerToken = xPostmarkServerToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePrestashop.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePrestashop.java index 07e4e23f4..c662170f6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePrestashop.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePrestashop.java @@ -50,11 +50,10 @@ public SourcePrestashop withUrl(String url) { return this; } - public SourcePrestashop(@JsonProperty("access_key") String accessKey, @JsonProperty("sourceType") SourcePrestashopPrestashopEnum sourceType, @JsonProperty("start_date") LocalDate startDate, @JsonProperty("url") String url) { - this.accessKey = accessKey; -this.sourceType = sourceType; -this.startDate = startDate; -this.url = url; + this.accessKey = accessKey; + this.sourceType = sourceType; + this.startDate = startDate; + this.url = url; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePublicApis.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePublicApis.java index f7a82c9e1..bbea66fa0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePublicApis.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePublicApis.java @@ -17,8 +17,7 @@ public SourcePublicApis withSourceType(SourcePublicApisPublicApisEnum sourceType return this; } - public SourcePublicApis(@JsonProperty("sourceType") SourcePublicApisPublicApisEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePunkApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePunkApi.java index 7775dfad0..26bb19492 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePunkApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePunkApi.java @@ -50,10 +50,9 @@ public SourcePunkApi withSourceType(SourcePunkApiPunkApiEnum sourceType) { return this; } - public SourcePunkApi(@JsonProperty("brewed_after") String brewedAfter, @JsonProperty("brewed_before") String brewedBefore, @JsonProperty("sourceType") SourcePunkApiPunkApiEnum sourceType) { - this.brewedAfter = brewedAfter; -this.brewedBefore = brewedBefore; -this.sourceType = sourceType; + this.brewedAfter = brewedAfter; + this.brewedBefore = brewedBefore; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcePypi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcePypi.java index 6e837f970..3a07bd7f1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcePypi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcePypi.java @@ -40,9 +40,8 @@ public SourcePypi withVersion(String version) { return this; } - public SourcePypi(@JsonProperty("project_name") String projectName, @JsonProperty("sourceType") SourcePypiPypiEnum sourceType) { - this.projectName = projectName; -this.sourceType = sourceType; + this.projectName = projectName; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceQualaroo.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceQualaroo.java index 3a4d76d89..6899be79f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceQualaroo.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceQualaroo.java @@ -60,11 +60,10 @@ public SourceQualaroo withToken(String token) { return this; } - public SourceQualaroo(@JsonProperty("key") String key, @JsonProperty("sourceType") SourceQualarooQualarooEnum sourceType, @JsonProperty("start_date") String startDate, @JsonProperty("token") String token) { - this.key = key; -this.sourceType = sourceType; -this.startDate = startDate; -this.token = token; + this.key = key; + this.sourceType = sourceType; + this.startDate = startDate; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooks.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooks.java index 344fd5e5f..458e4c112 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooks.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooks.java @@ -51,11 +51,10 @@ public SourceQuickbooks withStartDate(OffsetDateTime startDate) { return this; } - public SourceQuickbooks(@JsonProperty("credentials") Object credentials, @JsonProperty("sandbox") Boolean sandbox, @JsonProperty("sourceType") SourceQuickbooksQuickbooksEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.credentials = credentials; -this.sandbox = sandbox; -this.sourceType = sourceType; -this.startDate = startDate; + this.credentials = credentials; + this.sandbox = sandbox; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooksCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooksCredentialsOAuth20.java index 6a5aa0fdb..665acd60d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooksCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceQuickbooksCredentialsOAuth20.java @@ -84,13 +84,12 @@ public SourceQuickbooksCredentialsOAuth20 withTokenExpiryDate(OffsetDateTime tok return this; } - public SourceQuickbooksCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("realm_id") String realmId, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("token_expiry_date") OffsetDateTime tokenExpiryDate) { - this.accessToken = accessToken; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.realmId = realmId; -this.refreshToken = refreshToken; -this.tokenExpiryDate = tokenExpiryDate; + this.accessToken = accessToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.realmId = realmId; + this.refreshToken = refreshToken; + this.tokenExpiryDate = tokenExpiryDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRailz.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRailz.java index 6ab9e47b0..0b3f4b66c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRailz.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRailz.java @@ -47,11 +47,10 @@ public SourceRailz withStartDate(String startDate) { return this; } - public SourceRailz(@JsonProperty("client_id") String clientId, @JsonProperty("secret_key") String secretKey, @JsonProperty("sourceType") SourceRailzRailzEnum sourceType, @JsonProperty("start_date") String startDate) { - this.clientId = clientId; -this.secretKey = secretKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.clientId = clientId; + this.secretKey = secretKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecharge.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecharge.java index c4e482025..5b825596e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecharge.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecharge.java @@ -44,10 +44,9 @@ public SourceRecharge withStartDate(OffsetDateTime startDate) { return this; } - public SourceRecharge(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceRechargeRechargeEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.accessToken = accessToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.accessToken = accessToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecreation.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecreation.java index c0ecba059..4b36d8d30 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecreation.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecreation.java @@ -37,9 +37,8 @@ public SourceRecreation withSourceType(SourceRecreationRecreationEnum sourceType return this; } - public SourceRecreation(@JsonProperty("apikey") String apikey, @JsonProperty("sourceType") SourceRecreationRecreationEnum sourceType) { - this.apikey = apikey; -this.sourceType = sourceType; + this.apikey = apikey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecruitee.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecruitee.java index 4dcbbad94..cebd83a1b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecruitee.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecruitee.java @@ -37,10 +37,9 @@ public SourceRecruitee withSourceType(SourceRecruiteeRecruiteeEnum sourceType) { return this; } - public SourceRecruitee(@JsonProperty("api_key") String apiKey, @JsonProperty("company_id") Long companyId, @JsonProperty("sourceType") SourceRecruiteeRecruiteeEnum sourceType) { - this.apiKey = apiKey; -this.companyId = companyId; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.companyId = companyId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecurly.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecurly.java index 7bcfe273e..4a1cc38d8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRecurly.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRecurly.java @@ -51,9 +51,8 @@ public SourceRecurly withSourceType(SourceRecurlyRecurlyEnum sourceType) { return this; } - public SourceRecurly(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceRecurlyRecurlyEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRedshift.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRedshift.java index 45d30a70a..3f5656969 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRedshift.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRedshift.java @@ -91,13 +91,12 @@ public SourceRedshift withUsername(String username) { return this; } - public SourceRedshift(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceRedshiftRedshiftEnum sourceType) { - this.username = username; -this.password = password; -this.database = database; -this.host = host; -this.port = port; -this.sourceType = sourceType; + this.username = username; + this.password = password; + this.database = database; + this.host = host; + this.port = port; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceResponse.java index 7261e452e..a5aa73440 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceResponse.java @@ -38,11 +38,10 @@ public SourceResponse withWorkspaceId(String workspaceId) { return this; } - public SourceResponse(@JsonProperty("name") String name, @JsonProperty("sourceId") String sourceId, @JsonProperty("sourceType") String sourceType, @JsonProperty("workspaceId") String workspaceId) { - this.name = name; -this.sourceId = sourceId; -this.sourceType = sourceType; -this.workspaceId = workspaceId; + this.name = name; + this.sourceId = sourceId; + this.sourceType = sourceType; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRetently.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRetently.java index aaccbbeb7..60dc58e36 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRetently.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRetently.java @@ -30,8 +30,7 @@ public SourceRetently withSourceType(SourceRetentlyRetentlyEnum sourceType) { return this; } - public SourceRetently(@JsonProperty("sourceType") SourceRetentlyRetentlyEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRkiCovid.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRkiCovid.java index befa60af6..92c66ac5b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRkiCovid.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRkiCovid.java @@ -27,9 +27,8 @@ public SourceRkiCovid withStartDate(String startDate) { return this; } - public SourceRkiCovid(@JsonProperty("sourceType") SourceRkiCovidRkiCovidEnum sourceType, @JsonProperty("start_date") String startDate) { - this.sourceType = sourceType; -this.startDate = startDate; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceRss.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceRss.java index f00ae18da..97a6b1d71 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceRss.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceRss.java @@ -27,9 +27,8 @@ public SourceRss withUrl(String url) { return this; } - public SourceRss(@JsonProperty("sourceType") SourceRssRssEnum sourceType, @JsonProperty("url") String url) { - this.sourceType = sourceType; -this.url = url; + this.sourceType = sourceType; + this.url = url; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3.java index 33ce762b8..85138f9b8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3.java @@ -71,11 +71,10 @@ public SourceS3 withSourceType(SourceS3S3Enum sourceType) { return this; } - public SourceS3(@JsonProperty("dataset") String dataset, @JsonProperty("path_pattern") String pathPattern, @JsonProperty("provider") SourceS3S3AmazonWebServices provider, @JsonProperty("sourceType") SourceS3S3Enum sourceType) { - this.dataset = dataset; -this.pathPattern = pathPattern; -this.provider = provider; -this.sourceType = sourceType; + this.dataset = dataset; + this.pathPattern = pathPattern; + this.provider = provider; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatAvro.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatAvro.java index c32ec7af5..1e2e44202 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatAvro.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatAvro.java @@ -20,6 +20,5 @@ public SourceS3FormatAvro withFiletype(SourceS3FormatAvroFiletypeEnum filetype) return this; } - public SourceS3FormatAvro(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatCSV.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatCSV.java index de44752a2..fd0c0c905 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatCSV.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatCSV.java @@ -130,6 +130,5 @@ public SourceS3FormatCSV withQuoteChar(String quoteChar) { return this; } - public SourceS3FormatCSV(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatJsonl.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatJsonl.java index fae65fe6b..796b5cc1a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatJsonl.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatJsonl.java @@ -53,6 +53,5 @@ public SourceS3FormatJsonl withUnexpectedFieldBehavior(SourceS3FormatJsonlUnexpe return this; } - public SourceS3FormatJsonl(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatParquet.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatParquet.java index 0646fb941..66bff69fc 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatParquet.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3FormatParquet.java @@ -53,6 +53,5 @@ public SourceS3FormatParquet withFiletype(SourceS3FormatParquetFiletypeEnum file return this; } - public SourceS3FormatParquet(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3S3AmazonWebServices.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3S3AmazonWebServices.java index e589981ef..7e5b47555 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceS3S3AmazonWebServices.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceS3S3AmazonWebServices.java @@ -84,8 +84,7 @@ public SourceS3S3AmazonWebServices withStartDate(OffsetDateTime startDate) { return this; } - public SourceS3S3AmazonWebServices(@JsonProperty("bucket") String bucket) { - this.bucket = bucket; + this.bucket = bucket; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforce.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforce.java index 95119c9b4..52c0f9e0e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforce.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforce.java @@ -97,11 +97,10 @@ public SourceSalesforce withStreamsCriteria(SourceSalesforceStreamsCriteria[] st return this; } - public SourceSalesforce(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceSalesforceSalesforceEnum sourceType) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.sourceType = sourceType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceSinger.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceSinger.java index f833d6200..eaaf7fea3 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceSinger.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceSinger.java @@ -102,13 +102,12 @@ public SourceSalesforceSinger withStartDate(String startDate) { return this; } - public SourceSalesforceSinger(@JsonProperty("api_type") SourceSalesforceSingerApiTypeEnum apiType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceSalesforceSingerSalesforceSingerEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiType = apiType; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiType = apiType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceStreamsCriteria.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceStreamsCriteria.java index b53f38321..236c16cae 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceStreamsCriteria.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesforceStreamsCriteria.java @@ -21,9 +21,8 @@ public SourceSalesforceStreamsCriteria withValue(String value) { return this; } - public SourceSalesforceStreamsCriteria(@JsonProperty("criteria") SourceSalesforceStreamsCriteriaSearchCriteriaEnum criteria, @JsonProperty("value") String value) { - this.criteria = criteria; -this.value = value; + this.criteria = criteria; + this.value = value; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloft.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloft.java index 37bc00a80..527238a28 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloft.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloft.java @@ -41,10 +41,9 @@ public SourceSalesloft withStartDate(OffsetDateTime startDate) { return this; } - public SourceSalesloft(@JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceSalesloftSalesloftEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.credentials = credentials; -this.sourceType = sourceType; -this.startDate = startDate; + this.credentials = credentials; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaAPIKey.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaAPIKey.java index d414bc860..a17e95601 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaAPIKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaAPIKey.java @@ -24,9 +24,8 @@ public SourceSalesloftCredentialsAuthenticateViaAPIKey withAuthType(SourceSalesl return this; } - public SourceSalesloftCredentialsAuthenticateViaAPIKey(@JsonProperty("api_key") String apiKey, @JsonProperty("auth_type") SourceSalesloftCredentialsAuthenticateViaAPIKeyAuthTypeEnum authType) { - this.apiKey = apiKey; -this.authType = authType; + this.apiKey = apiKey; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaOAuth.java index 5555600c1..39b78b2d6 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSalesloftCredentialsAuthenticateViaOAuth.java @@ -71,13 +71,12 @@ public SourceSalesloftCredentialsAuthenticateViaOAuth withTokenExpiryDate(Offset return this; } - public SourceSalesloftCredentialsAuthenticateViaOAuth(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_type") SourceSalesloftCredentialsAuthenticateViaOAuthAuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("token_expiry_date") OffsetDateTime tokenExpiryDate) { - this.accessToken = accessToken; -this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.tokenExpiryDate = tokenExpiryDate; + this.accessToken = accessToken; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.tokenExpiryDate = tokenExpiryDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSapFieldglass.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSapFieldglass.java index 0827ad9b2..b66e59098 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSapFieldglass.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSapFieldglass.java @@ -27,9 +27,8 @@ public SourceSapFieldglass withSourceType(SourceSapFieldglassSapFieldglassEnum s return this; } - public SourceSapFieldglass(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceSapFieldglassSapFieldglassEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSecoda.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSecoda.java index 7d5fffb7a..977c93989 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSecoda.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSecoda.java @@ -27,9 +27,8 @@ public SourceSecoda withSourceType(SourceSecodaSecodaEnum sourceType) { return this; } - public SourceSecoda(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceSecodaSecodaEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSendgrid.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSendgrid.java index 3824f7ac1..7cb07d730 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSendgrid.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSendgrid.java @@ -47,9 +47,8 @@ public SourceSendgrid withStartTime(OffsetDateTime startTime) { return this; } - public SourceSendgrid(@JsonProperty("apikey") String apikey, @JsonProperty("sourceType") SourceSendgridSendgridEnum sourceType) { - this.apikey = apikey; -this.sourceType = sourceType; + this.apikey = apikey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSendinblue.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSendinblue.java index f34924430..d313622f7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSendinblue.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSendinblue.java @@ -27,9 +27,8 @@ public SourceSendinblue withSourceType(SourceSendinblueSendinblueEnum sourceType return this; } - public SourceSendinblue(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceSendinblueSendinblueEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSenseforce.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSenseforce.java index cb6e65932..4e12a7045 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSenseforce.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSenseforce.java @@ -73,12 +73,11 @@ public SourceSenseforce withStartDate(LocalDate startDate) { return this; } - public SourceSenseforce(@JsonProperty("access_token") String accessToken, @JsonProperty("backend_url") String backendUrl, @JsonProperty("dataset_id") String datasetId, @JsonProperty("sourceType") SourceSenseforceSenseforceEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.accessToken = accessToken; -this.backendUrl = backendUrl; -this.datasetId = datasetId; -this.sourceType = sourceType; -this.startDate = startDate; + this.accessToken = accessToken; + this.backendUrl = backendUrl; + this.datasetId = datasetId; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSentry.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSentry.java index 76b2e1049..2ef13f563 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSentry.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSentry.java @@ -71,11 +71,10 @@ public SourceSentry withSourceType(SourceSentrySentryEnum sourceType) { return this; } - public SourceSentry(@JsonProperty("auth_token") String authToken, @JsonProperty("organization") String organization, @JsonProperty("project") String project, @JsonProperty("sourceType") SourceSentrySentryEnum sourceType) { - this.authToken = authToken; -this.organization = organization; -this.project = project; -this.sourceType = sourceType; + this.authToken = authToken; + this.organization = organization; + this.project = project; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftp.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftp.java index 6851129a2..1679c7695 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftp.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftp.java @@ -93,11 +93,10 @@ public SourceSftp withUser(String user) { return this; } - public SourceSftp(@JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceSftpSftpEnum sourceType, @JsonProperty("user") String user) { - this.host = host; -this.port = port; -this.sourceType = sourceType; -this.user = user; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.user = user; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpBulk.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpBulk.java index 34ee5b1d1..7c3063fef 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpBulk.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpBulk.java @@ -141,14 +141,13 @@ public SourceSftpBulk withUsername(String username) { return this; } - public SourceSftpBulk(@JsonProperty("folder_path") String folderPath, @JsonProperty("host") String host, @JsonProperty("port") Long port, @JsonProperty("sourceType") SourceSftpBulkSftpBulkEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("stream_name") String streamName, @JsonProperty("username") String username) { - this.folderPath = folderPath; -this.host = host; -this.port = port; -this.sourceType = sourceType; -this.startDate = startDate; -this.streamName = streamName; -this.username = username; + this.folderPath = folderPath; + this.host = host; + this.port = port; + this.sourceType = sourceType; + this.startDate = startDate; + this.streamName = streamName; + this.username = username; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsPasswordAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsPasswordAuthentication.java index 1fb10c071..195f0f77e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsPasswordAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsPasswordAuthentication.java @@ -30,9 +30,8 @@ public SourceSftpCredentialsPasswordAuthentication withAuthUserPassword(String a return this; } - public SourceSftpCredentialsPasswordAuthentication(@JsonProperty("auth_method") SourceSftpCredentialsPasswordAuthenticationAuthMethodEnum authMethod, @JsonProperty("auth_user_password") String authUserPassword) { - this.authMethod = authMethod; -this.authUserPassword = authUserPassword; + this.authMethod = authMethod; + this.authUserPassword = authUserPassword; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsSSHKeyAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsSSHKeyAuthentication.java index b26b63dbb..91dc6c8b9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsSSHKeyAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSftpCredentialsSSHKeyAuthentication.java @@ -30,9 +30,8 @@ public SourceSftpCredentialsSSHKeyAuthentication withAuthSshKey(String authSshKe return this; } - public SourceSftpCredentialsSSHKeyAuthentication(@JsonProperty("auth_method") SourceSftpCredentialsSSHKeyAuthenticationAuthMethodEnum authMethod, @JsonProperty("auth_ssh_key") String authSshKey) { - this.authMethod = authMethod; -this.authSshKey = authSshKey; + this.authMethod = authMethod; + this.authSshKey = authSshKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceShopify.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceShopify.java index 35484f481..fcbab0742 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceShopify.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceShopify.java @@ -50,10 +50,9 @@ public SourceShopify withStartDate(String startDate) { return this; } - public SourceShopify(@JsonProperty("shop") String shop, @JsonProperty("sourceType") SourceShopifyShopifyEnum sourceType, @JsonProperty("start_date") String startDate) { - this.shop = shop; -this.sourceType = sourceType; -this.startDate = startDate; + this.shop = shop; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsAPIPassword.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsAPIPassword.java index d38851298..9fb7356c1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsAPIPassword.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsAPIPassword.java @@ -27,9 +27,8 @@ public SourceShopifyCredentialsAPIPassword withAuthMethod(SourceShopifyCredentia return this; } - public SourceShopifyCredentialsAPIPassword(@JsonProperty("api_password") String apiPassword, @JsonProperty("auth_method") SourceShopifyCredentialsAPIPasswordAuthMethodEnum authMethod) { - this.apiPassword = apiPassword; -this.authMethod = authMethod; + this.apiPassword = apiPassword; + this.authMethod = authMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsOAuth20.java index 7a389d866..422f26894 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceShopifyCredentialsOAuth20.java @@ -52,8 +52,7 @@ public SourceShopifyCredentialsOAuth20 withClientSecret(String clientSecret) { return this; } - public SourceShopifyCredentialsOAuth20(@JsonProperty("auth_method") SourceShopifyCredentialsOAuth20AuthMethodEnum authMethod) { - this.authMethod = authMethod; + this.authMethod = authMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceShortio.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceShortio.java index 61cf7ca94..a8042ebde 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceShortio.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceShortio.java @@ -44,11 +44,10 @@ public SourceShortio withStartDate(String startDate) { return this; } - public SourceShortio(@JsonProperty("domain_id") String domainId, @JsonProperty("secret_key") String secretKey, @JsonProperty("sourceType") SourceShortioShortioEnum sourceType, @JsonProperty("start_date") String startDate) { - this.domainId = domainId; -this.secretKey = secretKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.domainId = domainId; + this.secretKey = secretKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSlack.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSlack.java index f5bd1e24d..2c17ef9b0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSlack.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSlack.java @@ -78,11 +78,10 @@ public SourceSlack withStartDate(OffsetDateTime startDate) { return this; } - public SourceSlack(@JsonProperty("join_channels") Boolean joinChannels, @JsonProperty("lookback_window") Long lookbackWindow, @JsonProperty("sourceType") SourceSlackSlackEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.joinChannels = joinChannels; -this.lookbackWindow = lookbackWindow; -this.sourceType = sourceType; -this.startDate = startDate; + this.joinChannels = joinChannels; + this.lookbackWindow = lookbackWindow; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsAPIToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsAPIToken.java index 2c54a0adb..4d57b4baf 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsAPIToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsAPIToken.java @@ -27,9 +27,8 @@ public SourceSlackCredentialsAPIToken withOptionTitle(SourceSlackCredentialsAPIT return this; } - public SourceSlackCredentialsAPIToken(@JsonProperty("api_token") String apiToken, @JsonProperty("option_title") SourceSlackCredentialsAPITokenOptionTitleEnum optionTitle) { - this.apiToken = apiToken; -this.optionTitle = optionTitle; + this.apiToken = apiToken; + this.optionTitle = optionTitle; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsSignInViaSlackOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsSignInViaSlackOAuth.java index ac45e8506..4dbee8e16 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsSignInViaSlackOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSlackCredentialsSignInViaSlackOAuth.java @@ -47,11 +47,10 @@ public SourceSlackCredentialsSignInViaSlackOAuth withOptionTitle(SourceSlackCred return this; } - public SourceSlackCredentialsSignInViaSlackOAuth(@JsonProperty("access_token") String accessToken, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("option_title") SourceSlackCredentialsSignInViaSlackOAuthOptionTitleEnum optionTitle) { - this.accessToken = accessToken; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.optionTitle = optionTitle; + this.accessToken = accessToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.optionTitle = optionTitle; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmaily.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmaily.java index b387fd700..6270d5183 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmaily.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmaily.java @@ -47,11 +47,10 @@ public SourceSmaily withSourceType(SourceSmailySmailyEnum sourceType) { return this; } - public SourceSmaily(@JsonProperty("api_username") String apiUsername, @JsonProperty("api_password") String apiPassword, @JsonProperty("api_subdomain") String apiSubdomain, @JsonProperty("sourceType") SourceSmailySmailyEnum sourceType) { - this.apiUsername = apiUsername; -this.apiPassword = apiPassword; -this.apiSubdomain = apiSubdomain; -this.sourceType = sourceType; + this.apiUsername = apiUsername; + this.apiPassword = apiPassword; + this.apiSubdomain = apiSubdomain; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartengage.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartengage.java index be12d2644..6f1653ff2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartengage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartengage.java @@ -27,9 +27,8 @@ public SourceSmartengage withSourceType(SourceSmartengageSmartengageEnum sourceT return this; } - public SourceSmartengage(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceSmartengageSmartengageEnum sourceType) { - this.apiKey = apiKey; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheets.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheets.java index 55836d1b2..14b5dd0bb 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheets.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheets.java @@ -54,10 +54,9 @@ public SourceSmartsheets withStartDatetime(OffsetDateTime startDatetime) { return this; } - public SourceSmartsheets(@JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceSmartsheetsSmartsheetsEnum sourceType, @JsonProperty("spreadsheet_id") String spreadsheetId) { - this.credentials = credentials; -this.sourceType = sourceType; -this.spreadsheetId = spreadsheetId; + this.credentials = credentials; + this.sourceType = sourceType; + this.spreadsheetId = spreadsheetId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsAPIAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsAPIAccessToken.java index b4b40549a..2da7d8664 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsAPIAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsAPIAccessToken.java @@ -27,8 +27,7 @@ public SourceSmartsheetsCredentialsAPIAccessToken withAuthType(SourceSmartsheets return this; } - public SourceSmartsheetsCredentialsAPIAccessToken(@JsonProperty("access_token") String accessToken) { - this.accessToken = accessToken; + this.accessToken = accessToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsOAuth20.java index d805630ed..0982720a9 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSmartsheetsCredentialsOAuth20.java @@ -74,12 +74,11 @@ public SourceSmartsheetsCredentialsOAuth20 withTokenExpiryDate(OffsetDateTime to return this; } - public SourceSmartsheetsCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("token_expiry_date") OffsetDateTime tokenExpiryDate) { - this.accessToken = accessToken; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.tokenExpiryDate = tokenExpiryDate; + this.accessToken = accessToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.tokenExpiryDate = tokenExpiryDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnapchatMarketing.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnapchatMarketing.java index 668ac0dcf..f21642f4b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnapchatMarketing.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnapchatMarketing.java @@ -75,11 +75,10 @@ public SourceSnapchatMarketing withStartDate(LocalDate startDate) { return this; } - public SourceSnapchatMarketing(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceSnapchatMarketingSnapchatMarketingEnum sourceType) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.sourceType = sourceType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflake.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflake.java index bbaa3c0cc..a2cbdf98a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflake.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflake.java @@ -89,12 +89,11 @@ public SourceSnowflake withWarehouse(String warehouse) { return this; } - public SourceSnowflake(@JsonProperty("database") String database, @JsonProperty("host") String host, @JsonProperty("role") String role, @JsonProperty("sourceType") SourceSnowflakeSnowflakeEnum sourceType, @JsonProperty("warehouse") String warehouse) { - this.database = database; -this.host = host; -this.role = role; -this.sourceType = sourceType; -this.warehouse = warehouse; + this.database = database; + this.host = host; + this.role = role; + this.sourceType = sourceType; + this.warehouse = warehouse; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsOAuth20.java index 2f2657ba2..ee7c2d24f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsOAuth20.java @@ -58,10 +58,9 @@ public SourceSnowflakeCredentialsOAuth20 withRefreshToken(String refreshToken) { return this; } - public SourceSnowflakeCredentialsOAuth20(@JsonProperty("auth_type") SourceSnowflakeCredentialsOAuth20AuthTypeEnum authType, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret) { - this.authType = authType; -this.clientId = clientId; -this.clientSecret = clientSecret; + this.authType = authType; + this.clientId = clientId; + this.clientSecret = clientSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsUsernameAndPassword.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsUsernameAndPassword.java index 15f7d9526..283b899d0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsUsernameAndPassword.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSnowflakeCredentialsUsernameAndPassword.java @@ -34,10 +34,9 @@ public SourceSnowflakeCredentialsUsernameAndPassword withUsername(String usernam return this; } - public SourceSnowflakeCredentialsUsernameAndPassword(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("auth_type") SourceSnowflakeCredentialsUsernameAndPasswordAuthTypeEnum authType) { - this.username = username; -this.password = password; -this.authType = authType; + this.username = username; + this.password = password; + this.authType = authType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSonarCloud.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSonarCloud.java index dd470e689..cd9b16952 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSonarCloud.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSonarCloud.java @@ -75,11 +75,10 @@ public SourceSonarCloud withUserToken(String userToken) { return this; } - public SourceSonarCloud(@JsonProperty("component_keys") Object[] componentKeys, @JsonProperty("organization") String organization, @JsonProperty("sourceType") SourceSonarCloudSonarCloudEnum sourceType, @JsonProperty("user_token") String userToken) { - this.componentKeys = componentKeys; -this.organization = organization; -this.sourceType = sourceType; -this.userToken = userToken; + this.componentKeys = componentKeys; + this.organization = organization; + this.sourceType = sourceType; + this.userToken = userToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSpacexApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSpacexApi.java index fc5b148fa..f5012a1f4 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSpacexApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSpacexApi.java @@ -35,8 +35,7 @@ public SourceSpacexApi withSourceType(SourceSpacexApiSpacexApiEnum sourceType) { return this; } - public SourceSpacexApi(@JsonProperty("sourceType") SourceSpacexApiSpacexApiEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSquare.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSquare.java index 36e8ced98..9d64e1004 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSquare.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSquare.java @@ -65,9 +65,8 @@ public SourceSquare withStartDate(LocalDate startDate) { return this; } - public SourceSquare(@JsonProperty("is_sandbox") Boolean isSandbox, @JsonProperty("sourceType") SourceSquareSquareEnum sourceType) { - this.isSandbox = isSandbox; -this.sourceType = sourceType; + this.isSandbox = isSandbox; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsAPIKey.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsAPIKey.java index 395fd3cf6..1cd09c6df 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsAPIKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsAPIKey.java @@ -30,8 +30,7 @@ public SourceSquareCredentialsAPIKey withCredentialsTitle(SourceSquareCredential return this; } - public SourceSquareCredentialsAPIKey(@JsonProperty("api_key") String apiKey) { - this.apiKey = apiKey; + this.apiKey = apiKey; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsOauthAuthentication.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsOauthAuthentication.java index 284eac614..dac9cb663 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsOauthAuthentication.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSquareCredentialsOauthAuthentication.java @@ -50,10 +50,9 @@ public SourceSquareCredentialsOauthAuthentication withRefreshToken(String refres return this; } - public SourceSquareCredentialsOauthAuthentication(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceStrava.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceStrava.java index fb3be175f..a15189a4f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceStrava.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceStrava.java @@ -84,13 +84,12 @@ public SourceStrava withStartDate(OffsetDateTime startDate) { return this; } - public SourceStrava(@JsonProperty("athlete_id") Long athleteId, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceStravaStravaEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.athleteId = athleteId; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.athleteId = athleteId; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceStripe.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceStripe.java index d377f7ec7..b7b6da488 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceStripe.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceStripe.java @@ -78,11 +78,10 @@ public SourceStripe withStartDate(OffsetDateTime startDate) { return this; } - public SourceStripe(@JsonProperty("account_id") String accountId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("sourceType") SourceStripeStripeEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.accountId = accountId; -this.clientSecret = clientSecret; -this.sourceType = sourceType; -this.startDate = startDate; + this.accountId = accountId; + this.clientSecret = clientSecret; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrow.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrow.java index 39e103636..3a6776223 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrow.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrow.java @@ -51,9 +51,8 @@ public SourceSurveySparrow withSurveyId(Object[] surveyId) { return this; } - public SourceSurveySparrow(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceSurveySparrowSurveySparrowEnum sourceType) { - this.accessToken = accessToken; -this.sourceType = sourceType; + this.accessToken = accessToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionEUBasedAccount.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionEUBasedAccount.java index 132677902..e84260cbe 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionEUBasedAccount.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionEUBasedAccount.java @@ -20,6 +20,5 @@ public SourceSurveySparrowRegionEUBasedAccount withUrlBase(SourceSurveySparrowRe return this; } - public SourceSurveySparrowRegionEUBasedAccount(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionGlobalAccount.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionGlobalAccount.java index 171c04533..533f4f3e1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionGlobalAccount.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveySparrowRegionGlobalAccount.java @@ -20,6 +20,5 @@ public SourceSurveySparrowRegionGlobalAccount withUrlBase(SourceSurveySparrowReg return this; } - public SourceSurveySparrowRegionGlobalAccount(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkey.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkey.java index 2dc24ed8c..db47bec0f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkey.java @@ -69,9 +69,8 @@ public SourceSurveymonkey withSurveyIds(String[] surveyIds) { return this; } - public SourceSurveymonkey(@JsonProperty("sourceType") SourceSurveymonkeySurveymonkeyEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.sourceType = sourceType; -this.startDate = startDate; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkeySurveyMonkeyAuthorizationMethod.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkeySurveyMonkeyAuthorizationMethod.java index eacc3a659..c05d23c9d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkeySurveyMonkeyAuthorizationMethod.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceSurveymonkeySurveyMonkeyAuthorizationMethod.java @@ -51,9 +51,8 @@ public SourceSurveymonkeySurveyMonkeyAuthorizationMethod withClientSecret(String return this; } - public SourceSurveymonkeySurveyMonkeyAuthorizationMethod(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_method") SourceSurveymonkeySurveyMonkeyAuthorizationMethodAuthMethodEnum authMethod) { - this.accessToken = accessToken; -this.authMethod = authMethod; + this.accessToken = accessToken; + this.authMethod = authMethod; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTempo.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTempo.java index db448a368..dd19e4b7d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTempo.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTempo.java @@ -27,9 +27,8 @@ public SourceTempo withSourceType(SourceTempoTempoEnum sourceType) { return this; } - public SourceTempo(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceTempoTempoEnum sourceType) { - this.apiToken = apiToken; -this.sourceType = sourceType; + this.apiToken = apiToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTheGuardianApi.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTheGuardianApi.java index e56252f74..26a98484e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTheGuardianApi.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTheGuardianApi.java @@ -83,10 +83,9 @@ public SourceTheGuardianApi withTag(String tag) { return this; } - public SourceTheGuardianApi(@JsonProperty("api_key") String apiKey, @JsonProperty("sourceType") SourceTheGuardianApiTheGuardianApiEnum sourceType, @JsonProperty("start_date") String startDate) { - this.apiKey = apiKey; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketing.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketing.java index d5c726056..675f1214c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketing.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketing.java @@ -67,8 +67,7 @@ public SourceTiktokMarketing withStartDate(LocalDate startDate) { return this; } - public SourceTiktokMarketing(@JsonProperty("sourceType") SourceTiktokMarketingTiktokMarketingEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsOAuth20.java index 69773fc77..f5580c948 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsOAuth20.java @@ -61,10 +61,9 @@ public SourceTiktokMarketingCredentialsOAuth20 withSecret(String secret) { return this; } - public SourceTiktokMarketingCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("app_id") String appId, @JsonProperty("secret") String secret) { - this.accessToken = accessToken; -this.appId = appId; -this.secret = secret; + this.accessToken = accessToken; + this.appId = appId; + this.secret = secret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsSandboxAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsSandboxAccessToken.java index e842ceb10..beb6fa032 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsSandboxAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTiktokMarketingCredentialsSandboxAccessToken.java @@ -40,9 +40,8 @@ public SourceTiktokMarketingCredentialsSandboxAccessToken withAuthType(SourceTik return this; } - public SourceTiktokMarketingCredentialsSandboxAccessToken(@JsonProperty("access_token") String accessToken, @JsonProperty("advertiser_id") String advertiserId) { - this.accessToken = accessToken; -this.advertiserId = advertiserId; + this.accessToken = accessToken; + this.advertiserId = advertiserId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTodoist.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTodoist.java index d5171c332..e6f1b12f0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTodoist.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTodoist.java @@ -27,9 +27,8 @@ public SourceTodoist withToken(String token) { return this; } - public SourceTodoist(@JsonProperty("sourceType") SourceTodoistTodoistEnum sourceType, @JsonProperty("token") String token) { - this.sourceType = sourceType; -this.token = token; + this.sourceType = sourceType; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrello.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrello.java index 5ff1a5068..6fc85f9e1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrello.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrello.java @@ -67,11 +67,10 @@ public SourceTrello withToken(String token) { return this; } - public SourceTrello(@JsonProperty("key") String key, @JsonProperty("sourceType") SourceTrelloTrelloEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("token") String token) { - this.key = key; -this.sourceType = sourceType; -this.startDate = startDate; -this.token = token; + this.key = key; + this.sourceType = sourceType; + this.startDate = startDate; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilot.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilot.java index 887372dd2..454fcea4e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilot.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilot.java @@ -44,11 +44,10 @@ public SourceTrustpilot withStartDate(String startDate) { return this; } - public SourceTrustpilot(@JsonProperty("business_units") String[] businessUnits, @JsonProperty("credentials") Object credentials, @JsonProperty("sourceType") SourceTrustpilotTrustpilotEnum sourceType, @JsonProperty("start_date") String startDate) { - this.businessUnits = businessUnits; -this.credentials = credentials; -this.sourceType = sourceType; -this.startDate = startDate; + this.businessUnits = businessUnits; + this.credentials = credentials; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsAPIKey.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsAPIKey.java index ca4fc9c3f..2352ecdd0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsAPIKey.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsAPIKey.java @@ -30,8 +30,7 @@ public SourceTrustpilotCredentialsAPIKey withClientId(String clientId) { return this; } - public SourceTrustpilotCredentialsAPIKey(@JsonProperty("client_id") String clientId) { - this.clientId = clientId; + this.clientId = clientId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsOAuth20.java index fb53e4c49..945aa3160 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTrustpilotCredentialsOAuth20.java @@ -74,12 +74,11 @@ public SourceTrustpilotCredentialsOAuth20 withTokenExpiryDate(OffsetDateTime tok return this; } - public SourceTrustpilotCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("token_expiry_date") OffsetDateTime tokenExpiryDate) { - this.accessToken = accessToken; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.tokenExpiryDate = tokenExpiryDate; + this.accessToken = accessToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.tokenExpiryDate = tokenExpiryDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTvmazeSchedule.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTvmazeSchedule.java index e251043e4..b703766c7 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTvmazeSchedule.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTvmazeSchedule.java @@ -65,10 +65,9 @@ public SourceTvmazeSchedule withWebScheduleCountryCode(String webScheduleCountry return this; } - public SourceTvmazeSchedule(@JsonProperty("domestic_schedule_country_code") String domesticScheduleCountryCode, @JsonProperty("sourceType") SourceTvmazeScheduleTvmazeScheduleEnum sourceType, @JsonProperty("start_date") String startDate) { - this.domesticScheduleCountryCode = domesticScheduleCountryCode; -this.sourceType = sourceType; -this.startDate = startDate; + this.domesticScheduleCountryCode = domesticScheduleCountryCode; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilio.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilio.java index 3ae6a1783..982b999ca 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilio.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilio.java @@ -67,11 +67,10 @@ public SourceTwilio withStartDate(OffsetDateTime startDate) { return this; } - public SourceTwilio(@JsonProperty("account_sid") String accountSid, @JsonProperty("auth_token") String authToken, @JsonProperty("sourceType") SourceTwilioTwilioEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.accountSid = accountSid; -this.authToken = authToken; -this.sourceType = sourceType; -this.startDate = startDate; + this.accountSid = accountSid; + this.authToken = authToken; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilioTaskrouter.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilioTaskrouter.java index d0ba3f908..cc86aa820 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilioTaskrouter.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTwilioTaskrouter.java @@ -37,10 +37,9 @@ public SourceTwilioTaskrouter withSourceType(SourceTwilioTaskrouterTwilioTaskrou return this; } - public SourceTwilioTaskrouter(@JsonProperty("account_sid") String accountSid, @JsonProperty("auth_token") String authToken, @JsonProperty("sourceType") SourceTwilioTaskrouterTwilioTaskrouterEnum sourceType) { - this.accountSid = accountSid; -this.authToken = authToken; -this.sourceType = sourceType; + this.accountSid = accountSid; + this.authToken = authToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTwitter.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTwitter.java index 17813007c..545db7d0f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTwitter.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTwitter.java @@ -70,10 +70,9 @@ public SourceTwitter withStartDate(OffsetDateTime startDate) { return this; } - public SourceTwitter(@JsonProperty("api_key") String apiKey, @JsonProperty("query") String query, @JsonProperty("sourceType") SourceTwitterTwitterEnum sourceType) { - this.apiKey = apiKey; -this.query = query; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.query = query; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceTypeform.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceTypeform.java index a55d4f210..7899b9c14 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceTypeform.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceTypeform.java @@ -57,10 +57,9 @@ public SourceTypeform withToken(String token) { return this; } - public SourceTypeform(@JsonProperty("sourceType") SourceTypeformTypeformEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("token") String token) { - this.sourceType = sourceType; -this.startDate = startDate; -this.token = token; + this.sourceType = sourceType; + this.startDate = startDate; + this.token = token; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceUsCensus.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceUsCensus.java index 8409a8178..a6de848f0 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceUsCensus.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceUsCensus.java @@ -50,10 +50,9 @@ public SourceUsCensus withSourceType(SourceUsCensusUsCensusEnum sourceType) { return this; } - public SourceUsCensus(@JsonProperty("api_key") String apiKey, @JsonProperty("query_path") String queryPath, @JsonProperty("sourceType") SourceUsCensusUsCensusEnum sourceType) { - this.apiKey = apiKey; -this.queryPath = queryPath; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.queryPath = queryPath; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceVantage.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceVantage.java index 2a3bce852..b3dac409b 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceVantage.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceVantage.java @@ -27,9 +27,8 @@ public SourceVantage withSourceType(SourceVantageVantageEnum sourceType) { return this; } - public SourceVantage(@JsonProperty("access_token") String accessToken, @JsonProperty("sourceType") SourceVantageVantageEnum sourceType) { - this.accessToken = accessToken; -this.sourceType = sourceType; + this.accessToken = accessToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceWebflow.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceWebflow.java index f09264f00..e9e3544bf 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceWebflow.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceWebflow.java @@ -37,10 +37,9 @@ public SourceWebflow withSourceType(SourceWebflowWebflowEnum sourceType) { return this; } - public SourceWebflow(@JsonProperty("api_key") String apiKey, @JsonProperty("site_id") String siteId, @JsonProperty("sourceType") SourceWebflowWebflowEnum sourceType) { - this.apiKey = apiKey; -this.siteId = siteId; -this.sourceType = sourceType; + this.apiKey = apiKey; + this.siteId = siteId; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceWhiskyHunter.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceWhiskyHunter.java index 565fbe36d..9bccc4b19 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceWhiskyHunter.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceWhiskyHunter.java @@ -17,8 +17,7 @@ public SourceWhiskyHunter withSourceType(SourceWhiskyHunterWhiskyHunterEnum sour return this; } - public SourceWhiskyHunter(@JsonProperty("sourceType") SourceWhiskyHunterWhiskyHunterEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceWikipediaPageviews.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceWikipediaPageviews.java index 01e10513a..32bd0dab5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceWikipediaPageviews.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceWikipediaPageviews.java @@ -87,15 +87,14 @@ public SourceWikipediaPageviews withStart(String start) { return this; } - public SourceWikipediaPageviews(@JsonProperty("access") String access, @JsonProperty("agent") String agent, @JsonProperty("article") String article, @JsonProperty("country") String country, @JsonProperty("end") String end, @JsonProperty("project") String project, @JsonProperty("sourceType") SourceWikipediaPageviewsWikipediaPageviewsEnum sourceType, @JsonProperty("start") String start) { - this.access = access; -this.agent = agent; -this.article = article; -this.country = country; -this.end = end; -this.project = project; -this.sourceType = sourceType; -this.start = start; + this.access = access; + this.agent = agent; + this.article = article; + this.country = country; + this.end = end; + this.project = project; + this.sourceType = sourceType; + this.start = start; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceWoocommerce.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceWoocommerce.java index e1951fef2..9de2c17dd 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceWoocommerce.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceWoocommerce.java @@ -60,12 +60,11 @@ public SourceWoocommerce withStartDate(LocalDate startDate) { return this; } - public SourceWoocommerce(@JsonProperty("api_key") String apiKey, @JsonProperty("api_secret") String apiSecret, @JsonProperty("shop") String shop, @JsonProperty("sourceType") SourceWoocommerceWoocommerceEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.apiKey = apiKey; -this.apiSecret = apiSecret; -this.shop = shop; -this.sourceType = sourceType; -this.startDate = startDate; + this.apiKey = apiKey; + this.apiSecret = apiSecret; + this.shop = shop; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceXero.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceXero.java index d8e4a855a..478795a63 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceXero.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceXero.java @@ -51,11 +51,10 @@ public SourceXero withTenantId(String tenantId) { return this; } - public SourceXero(@JsonProperty("authentication") SourceXeroAuthenticateViaXeroOAuth authentication, @JsonProperty("sourceType") SourceXeroXeroEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("tenant_id") String tenantId) { - this.authentication = authentication; -this.sourceType = sourceType; -this.startDate = startDate; -this.tenantId = tenantId; + this.authentication = authentication; + this.sourceType = sourceType; + this.startDate = startDate; + this.tenantId = tenantId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceXeroAuthenticateViaXeroOAuth.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceXeroAuthenticateViaXeroOAuth.java index bbe60c003..5f8d4ce54 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceXeroAuthenticateViaXeroOAuth.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceXeroAuthenticateViaXeroOAuth.java @@ -57,12 +57,11 @@ public SourceXeroAuthenticateViaXeroOAuth withTokenExpiryDate(String tokenExpiry return this; } - public SourceXeroAuthenticateViaXeroOAuth(@JsonProperty("access_token") String accessToken, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("token_expiry_date") String tokenExpiryDate) { - this.accessToken = accessToken; -this.clientId = clientId; -this.clientSecret = clientSecret; -this.refreshToken = refreshToken; -this.tokenExpiryDate = tokenExpiryDate; + this.accessToken = accessToken; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.refreshToken = refreshToken; + this.tokenExpiryDate = tokenExpiryDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceXkcd.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceXkcd.java index d842bfc51..3760f41d8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceXkcd.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceXkcd.java @@ -17,8 +17,7 @@ public SourceXkcd withSourceType(SourceXkcdXkcdEnum sourceType) { return this; } - public SourceXkcd(@JsonProperty("sourceType") SourceXkcdXkcdEnum sourceType) { - this.sourceType = sourceType; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceYandexMetrica.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceYandexMetrica.java index 312458459..0f1b9e7a2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceYandexMetrica.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceYandexMetrica.java @@ -64,11 +64,10 @@ public SourceYandexMetrica withStartDate(LocalDate startDate) { return this; } - public SourceYandexMetrica(@JsonProperty("auth_token") String authToken, @JsonProperty("counter_id") String counterId, @JsonProperty("sourceType") SourceYandexMetricaYandexMetricaEnum sourceType, @JsonProperty("start_date") LocalDate startDate) { - this.authToken = authToken; -this.counterId = counterId; -this.sourceType = sourceType; -this.startDate = startDate; + this.authToken = authToken; + this.counterId = counterId; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceYounium.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceYounium.java index 25c956a10..5a616a6b1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceYounium.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceYounium.java @@ -60,11 +60,10 @@ public SourceYounium withUsername(String username) { return this; } - public SourceYounium(@JsonProperty("username") String username, @JsonProperty("password") String password, @JsonProperty("legal_entity") String legalEntity, @JsonProperty("sourceType") SourceYouniumYouniumEnum sourceType) { - this.username = username; -this.password = password; -this.legalEntity = legalEntity; -this.sourceType = sourceType; + this.username = username; + this.password = password; + this.legalEntity = legalEntity; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceYoutubeAnalytics.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceYoutubeAnalytics.java index 62f0f7b70..a69b2dd68 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceYoutubeAnalytics.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceYoutubeAnalytics.java @@ -24,9 +24,8 @@ public SourceYoutubeAnalytics withSourceType(SourceYoutubeAnalyticsYoutubeAnalyt return this; } - public SourceYoutubeAnalytics(@JsonProperty("credentials") java.util.Map credentials, @JsonProperty("sourceType") SourceYoutubeAnalyticsYoutubeAnalyticsEnum sourceType) { - this.credentials = credentials; -this.sourceType = sourceType; + this.credentials = credentials; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChat.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChat.java index 53184e0b6..432ba91c2 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChat.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChat.java @@ -55,9 +55,8 @@ public SourceZendeskChat withSubdomain(String subdomain) { return this; } - public SourceZendeskChat(@JsonProperty("sourceType") SourceZendeskChatZendeskChatEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate) { - this.sourceType = sourceType; -this.startDate = startDate; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsAccessToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsAccessToken.java index 128ad03af..d96de2579 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsAccessToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsAccessToken.java @@ -24,9 +24,8 @@ public SourceZendeskChatCredentialsAccessToken withCredentials(SourceZendeskChat return this; } - public SourceZendeskChatCredentialsAccessToken(@JsonProperty("access_token") String accessToken, @JsonProperty("credentials") SourceZendeskChatCredentialsAccessTokenCredentialsEnum credentials) { - this.accessToken = accessToken; -this.credentials = credentials; + this.accessToken = accessToken; + this.credentials = credentials; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsOAuth20.java index e5b533a15..98aec866e 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskChatCredentialsOAuth20.java @@ -60,8 +60,7 @@ public SourceZendeskChatCredentialsOAuth20 withRefreshToken(String refreshToken) return this; } - public SourceZendeskChatCredentialsOAuth20(@JsonProperty("credentials") SourceZendeskChatCredentialsOAuth20CredentialsEnum credentials) { - this.credentials = credentials; + this.credentials = credentials; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshine.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshine.java index c2cd5fe1b..abc679413 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshine.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshine.java @@ -47,10 +47,9 @@ public SourceZendeskSunshine withSubdomain(String subdomain) { return this; } - public SourceZendeskSunshine(@JsonProperty("sourceType") SourceZendeskSunshineZendeskSunshineEnum sourceType, @JsonProperty("start_date") String startDate, @JsonProperty("subdomain") String subdomain) { - this.sourceType = sourceType; -this.startDate = startDate; -this.subdomain = subdomain; + this.sourceType = sourceType; + this.startDate = startDate; + this.subdomain = subdomain; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsAPIToken.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsAPIToken.java index e17fbdd14..09ec9122a 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsAPIToken.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsAPIToken.java @@ -34,10 +34,9 @@ public SourceZendeskSunshineCredentialsAPIToken withEmail(String email) { return this; } - public SourceZendeskSunshineCredentialsAPIToken(@JsonProperty("api_token") String apiToken, @JsonProperty("auth_method") SourceZendeskSunshineCredentialsAPITokenAuthMethodEnum authMethod, @JsonProperty("email") String email) { - this.apiToken = apiToken; -this.authMethod = authMethod; -this.email = email; + this.apiToken = apiToken; + this.authMethod = authMethod; + this.email = email; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsOAuth20.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsOAuth20.java index 00f0bd9df..a4ee49f4c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsOAuth20.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSunshineCredentialsOAuth20.java @@ -44,11 +44,10 @@ public SourceZendeskSunshineCredentialsOAuth20 withClientSecret(String clientSec return this; } - public SourceZendeskSunshineCredentialsOAuth20(@JsonProperty("access_token") String accessToken, @JsonProperty("auth_method") SourceZendeskSunshineCredentialsOAuth20AuthMethodEnum authMethod, @JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret) { - this.accessToken = accessToken; -this.authMethod = authMethod; -this.clientId = clientId; -this.clientSecret = clientSecret; + this.accessToken = accessToken; + this.authMethod = authMethod; + this.clientId = clientId; + this.clientSecret = clientSecret; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSupport.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSupport.java index 5cd5f42c7..57600832c 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSupport.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskSupport.java @@ -68,10 +68,9 @@ public SourceZendeskSupport withSubdomain(String subdomain) { return this; } - public SourceZendeskSupport(@JsonProperty("sourceType") SourceZendeskSupportZendeskSupportEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("subdomain") String subdomain) { - this.sourceType = sourceType; -this.startDate = startDate; -this.subdomain = subdomain; + this.sourceType = sourceType; + this.startDate = startDate; + this.subdomain = subdomain; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskTalk.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskTalk.java index 9a858a72e..4e840548f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskTalk.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZendeskTalk.java @@ -57,10 +57,9 @@ public SourceZendeskTalk withSubdomain(String subdomain) { return this; } - public SourceZendeskTalk(@JsonProperty("sourceType") SourceZendeskTalkZendeskTalkEnum sourceType, @JsonProperty("start_date") OffsetDateTime startDate, @JsonProperty("subdomain") String subdomain) { - this.sourceType = sourceType; -this.startDate = startDate; -this.subdomain = subdomain; + this.sourceType = sourceType; + this.startDate = startDate; + this.subdomain = subdomain; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZenloop.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZenloop.java index 4b1219c5a..c1abac4ec 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZenloop.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZenloop.java @@ -62,9 +62,8 @@ public SourceZenloop withSurveyId(String surveyId) { return this; } - public SourceZenloop(@JsonProperty("api_token") String apiToken, @JsonProperty("sourceType") SourceZenloopZenloopEnum sourceType) { - this.apiToken = apiToken; -this.sourceType = sourceType; + this.apiToken = apiToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZohoCrm.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZohoCrm.java index c18c32acf..f28ecab81 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZohoCrm.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZohoCrm.java @@ -97,14 +97,13 @@ public SourceZohoCrm withStartDatetime(OffsetDateTime startDatetime) { return this; } - public SourceZohoCrm(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("dc_region") SourceZohoCrmDataCenterLocationEnum dcRegion, @JsonProperty("edition") SourceZohoCRMZohoCRMEditionEnum edition, @JsonProperty("environment") SourceZohoCrmEnvironmentEnum environment, @JsonProperty("refresh_token") String refreshToken, @JsonProperty("sourceType") SourceZohoCrmZohoCrmEnum sourceType) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.dcRegion = dcRegion; -this.edition = edition; -this.environment = environment; -this.refreshToken = refreshToken; -this.sourceType = sourceType; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.dcRegion = dcRegion; + this.edition = edition; + this.environment = environment; + this.refreshToken = refreshToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZoom.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZoom.java index 959492ae7..4559fb80d 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZoom.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZoom.java @@ -27,9 +27,8 @@ public SourceZoom withSourceType(SourceZoomZoomEnum sourceType) { return this; } - public SourceZoom(@JsonProperty("jwt_token") String jwtToken, @JsonProperty("sourceType") SourceZoomZoomEnum sourceType) { - this.jwtToken = jwtToken; -this.sourceType = sourceType; + this.jwtToken = jwtToken; + this.sourceType = sourceType; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourceZuora.java b/lib/src/main/java/com/airbyte/api/models/shared/SourceZuora.java index 62a63700e..80dc161c1 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourceZuora.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourceZuora.java @@ -71,11 +71,10 @@ public SourceZuora withWindowInDays(Long windowInDays) { return this; } - public SourceZuora(@JsonProperty("client_id") String clientId, @JsonProperty("client_secret") String clientSecret, @JsonProperty("sourceType") SourceZuoraZuoraEnum sourceType, @JsonProperty("start_date") String startDate) { - this.clientId = clientId; -this.clientSecret = clientSecret; -this.sourceType = sourceType; -this.startDate = startDate; + this.clientId = clientId; + this.clientSecret = clientSecret; + this.sourceType = sourceType; + this.startDate = startDate; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/SourcesResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/SourcesResponse.java index 38c9e29db..bb6edfb0f 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/SourcesResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/SourcesResponse.java @@ -31,10 +31,9 @@ public SourcesResponse withPrevious(String previous) { return this; } - public SourcesResponse(@JsonProperty("data") SourceResponse[] data, @JsonProperty("next") String next, @JsonProperty("previous") String previous) { - this.data = data; -this.next = next; -this.previous = previous; + this.data = data; + this.next = next; + this.previous = previous; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/StreamConfiguration.java b/lib/src/main/java/com/airbyte/api/models/shared/StreamConfiguration.java index ebe862dcb..de1d70ef5 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/StreamConfiguration.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/StreamConfiguration.java @@ -49,8 +49,7 @@ public StreamConfiguration withSyncMode(ConnectionSyncModeEnumEnum syncMode) { return this; } - public StreamConfiguration(@JsonProperty("name") String name) { - this.name = name; + this.name = name; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/StreamConfigurations.java b/lib/src/main/java/com/airbyte/api/models/shared/StreamConfigurations.java index d62931029..514cb33b8 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/StreamConfigurations.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/StreamConfigurations.java @@ -20,6 +20,5 @@ public StreamConfigurations withStreams(StreamConfiguration[] streams) { return this; } - public StreamConfigurations(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/StreamProperties.java b/lib/src/main/java/com/airbyte/api/models/shared/StreamProperties.java index 94c3c387b..08f749155 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/StreamProperties.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/StreamProperties.java @@ -60,6 +60,5 @@ public StreamProperties withSyncModes(ConnectionSyncModeEnumEnum[] syncModes) { return this; } - public StreamProperties(){} } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceCreateRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceCreateRequest.java index 732f38f6c..082e43086 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceCreateRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceCreateRequest.java @@ -17,8 +17,7 @@ public WorkspaceCreateRequest withName(String name) { return this; } - public WorkspaceCreateRequest(@JsonProperty("name") String name) { - this.name = name; + this.name = name; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceOAuthCredentialsRequest.java b/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceOAuthCredentialsRequest.java index 50c6e2605..46dddabba 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceOAuthCredentialsRequest.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceOAuthCredentialsRequest.java @@ -37,10 +37,9 @@ public WorkspaceOAuthCredentialsRequest withName(String name) { return this; } - public WorkspaceOAuthCredentialsRequest(@JsonProperty("actorType") WorkspaceOAuthCredentialsRequestActorTypeEnum actorType, @JsonProperty("configuration") java.util.Map configuration, @JsonProperty("name") String name) { - this.actorType = actorType; -this.configuration = configuration; -this.name = name; + this.actorType = actorType; + this.configuration = configuration; + this.name = name; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceResponse.java index 07d5d19a0..2c5770146 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/WorkspaceResponse.java @@ -31,10 +31,9 @@ public WorkspaceResponse withWorkspaceId(String workspaceId) { return this; } - public WorkspaceResponse(@JsonProperty("dataResidency") GeographyEnumEnum dataResidency, @JsonProperty("name") String name, @JsonProperty("workspaceId") String workspaceId) { - this.dataResidency = dataResidency; -this.name = name; -this.workspaceId = workspaceId; + this.dataResidency = dataResidency; + this.name = name; + this.workspaceId = workspaceId; } } diff --git a/lib/src/main/java/com/airbyte/api/models/shared/WorkspacesResponse.java b/lib/src/main/java/com/airbyte/api/models/shared/WorkspacesResponse.java index 7cd9d1d30..4e9ef3947 100755 --- a/lib/src/main/java/com/airbyte/api/models/shared/WorkspacesResponse.java +++ b/lib/src/main/java/com/airbyte/api/models/shared/WorkspacesResponse.java @@ -31,10 +31,9 @@ public WorkspacesResponse withPrevious(String previous) { return this; } - public WorkspacesResponse(@JsonProperty("data") WorkspaceResponse[] data, @JsonProperty("next") String next, @JsonProperty("previous") String previous) { - this.data = data; -this.next = next; -this.previous = previous; + this.data = data; + this.next = next; + this.previous = previous; } }