Update fields in source-connectors specifications: mysql, onesignal, oracle, outreach, paystack, pipedrive, pokeapi (#8582)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com> Co-authored-by: Sergey Chvalyuk <grubberr@gmail.com> Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
This commit is contained in:
@@ -8,6 +8,6 @@ COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
|
||||
|
||||
RUN tar xf ${APPLICATION}.tar --strip-components=1
|
||||
|
||||
LABEL io.airbyte.version=0.5.0
|
||||
LABEL io.airbyte.version=0.5.1
|
||||
|
||||
LABEL io.airbyte.name=airbyte/source-mysql
|
||||
|
||||
@@ -8,12 +8,14 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"host": {
|
||||
"description": "Hostname of the database.",
|
||||
"description": "The host name of the database.",
|
||||
"title": "Host",
|
||||
"type": "string",
|
||||
"order": 0
|
||||
},
|
||||
"port": {
|
||||
"description": "Port of the database.",
|
||||
"description": "The port to connect to.",
|
||||
"title": "Port",
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 65536,
|
||||
@@ -22,23 +24,27 @@
|
||||
"order": 1
|
||||
},
|
||||
"database": {
|
||||
"description": "Name of the database.",
|
||||
"description": "The database name.",
|
||||
"title": "Database",
|
||||
"type": "string",
|
||||
"order": 2
|
||||
},
|
||||
"username": {
|
||||
"description": "Username to use to access the database.",
|
||||
"description": "The username which is used to access the database.",
|
||||
"title": "Username",
|
||||
"type": "string",
|
||||
"order": 3
|
||||
},
|
||||
"password": {
|
||||
"description": "Password associated with the username.",
|
||||
"description": "The password associated with the username.",
|
||||
"title": "Password",
|
||||
"type": "string",
|
||||
"airbyte_secret": true,
|
||||
"order": 4
|
||||
},
|
||||
"jdbc_url_params": {
|
||||
"description": "Additional properties to pass to the jdbc url string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3)",
|
||||
"description": "Additional properties to pass to the jdbc url string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).",
|
||||
"title": "JDBC URL Params",
|
||||
"type": "string",
|
||||
"order": 5
|
||||
},
|
||||
@@ -52,7 +58,7 @@
|
||||
"replication_method": {
|
||||
"type": "string",
|
||||
"title": "Replication Method",
|
||||
"description": "Replication method to use for extracting data from the database. STANDARD replication requires no setup on the DB side but will not be able to represent deletions incrementally. CDC uses the Binlog to detect inserts, updates, and deletes. This needs to be configured on the source database itself.",
|
||||
"description": "Replication method which is used for data extraction from the database. STANDARD replication requires no setup on the DB side but will not be able to represent deletions incrementally. CDC uses the Binlog to detect inserts, updates, and deletes. This needs to be configured on the source database itself.",
|
||||
"order": 7,
|
||||
"default": "STANDARD",
|
||||
"enum": ["STANDARD", "CDC"]
|
||||
|
||||
Reference in New Issue
Block a user