1
0
mirror of synced 2025-12-25 11:06:55 -05:00

Add SupportedDestinationSyncModes to destination specs objects (#2668)

* Add SupportedDestinationSyncModes to destination specs objects

* Bumpversions of destination connectors
This commit is contained in:
Christophe Duong
2021-03-31 15:20:01 +02:00
committed by GitHub
parent e6be760a8f
commit 6c6ea54bb8
50 changed files with 75 additions and 48 deletions

View File

@@ -8,6 +8,5 @@ COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
RUN tar xf ${APPLICATION}.tar --strip-components=1
LABEL io.airbyte.version=0.2.3
LABEL io.airbyte.version=0.2.4
LABEL io.airbyte.name=airbyte/destination-postgres

View File

@@ -1,6 +1,7 @@
{
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/postgres",
"supportsIncremental": true,
"supported_destination_sync_modes": ["overwrite", "append", "append_dedup"],
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Postgres Destination Spec",

View File

@@ -52,8 +52,8 @@ import io.airbyte.protocol.models.AirbyteStream;
import io.airbyte.protocol.models.CatalogHelpers;
import io.airbyte.protocol.models.ConfiguredAirbyteCatalog;
import io.airbyte.protocol.models.ConfiguredAirbyteStream;
import io.airbyte.protocol.models.ConfiguredAirbyteStream.DestinationSyncMode;
import io.airbyte.protocol.models.ConnectorSpecification;
import io.airbyte.protocol.models.DestinationSyncMode;
import io.airbyte.protocol.models.Field;
import io.airbyte.protocol.models.Field.JsonSchemaPrimitive;
import io.airbyte.protocol.models.SyncMode;