Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run processResources to fix master CICD #25250

Merged
merged 1 commit into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 180 additions & 0 deletions airbyte-config-oss/init-oss/src/main/resources/seed/oss_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -24875,6 +24875,186 @@
"allowedHosts": {
"hosts": [ "api.tempo.io" ]
}
}, {
"sourceDefinitionId": "aa8ba6fd-4875-d94e-fc8d-4e1e09aa2503",
"name": "Teradata",
"dockerRepository": "airbyte/source-teradata",
"dockerImageTag": "0.1.0",
"documentationUrl": "https://docs.airbyte.com/integrations/sources/teradata",
"icon": "teradata.svg",
"sourceType": "database",
"spec": {
"documentationUrl": "https://docs.airbyte.com/integrations/sources/teradata",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Teradata Source Spec",
"type": "object",
"required": [ "host", "database", "username" ],
"properties": {
"host": {
"title": "Host",
"description": "Hostname of the database.",
"type": "string",
"order": 0
},
"port": {
"title": "Port",
"description": "Port of the database.",
"type": "integer",
"minimum": 0,
"maximum": 65536,
"default": 3306,
"examples": [ "3306" ],
"order": 1
},
"database": {
"title": "Database",
"description": "Name of the database.",
"type": "string",
"order": 2
},
"username": {
"title": "Username",
"description": "Username to use to access the database.",
"type": "string",
"order": 3
},
"password": {
"title": "Password",
"description": "Password associated with the username.",
"type": "string",
"airbyte_secret": true,
"order": 4
},
"jdbc_url_params": {
"title": "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)",
"type": "string",
"order": 5
},
"replication_method": {
"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.",
"type": "string",
"order": 6,
"default": "STANDARD",
"enum": [ "STANDARD", "CDC" ]
},
"ssl": {
"title": "SSL Connection",
"description": "Encrypt data using SSL. When activating SSL, please select one of the connection modes.",
"type": "boolean",
"default": false,
"order": 7
},
"ssl_mode": {
"title": "SSL Modes",
"description": "SSL connection modes. \n <b>disable</b> - Chose this mode to disable encryption of communication between Airbyte and destination database\n <b>allow</b> - Chose this mode to enable encryption only when required by the destination database\n <b>prefer</b> - Chose this mode to allow unencrypted connection only if the destination database does not support encryption\n <b>require</b> - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail\n <b>verify-ca</b> - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate\n <b>verify-full</b> - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server\n See more information - <a href=\"https://teradata-docs.s3.amazonaws.com/doc/connectivity/jdbc/reference/current/jdbcug_chapter_2.html#URL_SSLMODE\"> in the docs</a>.",
"type": "object",
"order": 8,
"oneOf": [ {
"title": "disable",
"additionalProperties": true,
"description": "Disable SSL.",
"required": [ "mode" ],
"properties": {
"mode": {
"type": "string",
"const": "disable",
"order": 0
}
}
}, {
"title": "allow",
"additionalProperties": true,
"description": "Allow SSL mode.",
"required": [ "mode" ],
"properties": {
"mode": {
"type": "string",
"const": "allow",
"order": 0
}
}
}, {
"title": "prefer",
"additionalProperties": true,
"description": "Prefer SSL mode.",
"required": [ "mode" ],
"properties": {
"mode": {
"type": "string",
"const": "prefer",
"order": 0
}
}
}, {
"title": "require",
"additionalProperties": true,
"description": "Require SSL mode.",
"required": [ "mode" ],
"properties": {
"mode": {
"type": "string",
"const": "require",
"order": 0
}
}
}, {
"title": "verify-ca",
"additionalProperties": true,
"description": "Verify-ca SSL mode.",
"required": [ "mode", "ssl_ca_certificate" ],
"properties": {
"mode": {
"type": "string",
"const": "verify-ca",
"order": 0
},
"ssl_ca_certificate": {
"type": "string",
"title": "CA certificate",
"description": "Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca.\n See more information - <a href=\"https://teradata-docs.s3.amazonaws.com/doc/connectivity/jdbc/reference/current/jdbcug_chapter_2.html#URL_SSLCA\"> in the docs</a>.",
"airbyte_secret": true,
"multiline": true,
"order": 1
}
}
}, {
"title": "verify-full",
"additionalProperties": true,
"description": "Verify-full SSL mode.",
"required": [ "mode", "ssl_ca_certificate" ],
"properties": {
"mode": {
"type": "string",
"const": "verify-full",
"order": 0
},
"ssl_ca_certificate": {
"type": "string",
"title": "CA certificate",
"description": "Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full.\n See more information - <a href=\"https://teradata-docs.s3.amazonaws.com/doc/connectivity/jdbc/reference/current/jdbcug_chapter_2.html#URL_SSLCA\"> in the docs</a>.",
"airbyte_secret": true,
"multiline": true,
"order": 1
}
}
} ]
}
}
},
"supportsNormalization": false,
"supportsDBT": false,
"supported_destination_sync_modes": [ ]
},
"tombstone": false,
"public": true,
"custom": false,
"releaseStage": "alpha",
"allowedHosts": {
"hosts": [ "${host}" ]
}
}, {
"sourceDefinitionId": "0dad1a35-ccf8-4d03-b73e-6788c00b13ae",
"name": "TiDB",
Expand Down
1 change: 1 addition & 0 deletions connectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@
| **TVMaze Schedule** | <img alt="TVMaze Schedule icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/tvmazeschedule.svg" height="30" height="30"/> | Source | airbyte/source-tvmaze-schedule:0.1.0 | alpha | [docs](https://docs.airbyte.com/integrations/sources/tvmaze-schedule) | [connectors/source/tvmaze-schedule](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/tvmaze-schedule) | [source-tvmaze-schedule](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-tvmaze-schedule) | <small>`bd14b08f-9f43-400f-b2b6-7248b5c72561`</small> |
| **TalkDesk Explore** | <img alt="TalkDesk Explore icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/talkdesk-explore.svg" height="30" height="30"/> | Source | airbyte/source-talkdesk-explore:0.1.0 | alpha | [docs](https://docs.airbyte.com/integrations/sources/talkdesk-explore) | [connectors/source/talkdesk-explore](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/talkdesk-explore) | [source-talkdesk-explore](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-talkdesk-explore) | <small>`f00d2cf4-3c28-499a-ba93-b50b6f26359e`</small> |
| **Tempo** | <img alt="Tempo icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/tempo.svg" height="30" height="30"/> | Source | airbyte/source-tempo:0.3.1 | beta | [docs](https://docs.airbyte.com/integrations/sources/tempo) | [connectors/source/tempo](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/tempo) | [source-tempo](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-tempo) | <small>`d1aa448b-7c54-498e-ad95-263cbebcd2db`</small> |
| **Teradata** | <img alt="Teradata icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/teradata.svg" height="30" height="30"/> | Source | airbyte/source-teradata:0.1.0 | alpha | [docs](https://docs.airbyte.com/integrations/sources/teradata) | [connectors/source/teradata](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/teradata) | [source-teradata](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-teradata) | <small>`aa8ba6fd-4875-d94e-fc8d-4e1e09aa2503`</small> |
| **The Guardian API** | <img alt="The Guardian API icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/theguardian.svg" height="30" height="30"/> | Source | airbyte/source-the-guardian-api:0.1.0 | alpha | [docs](https://docs.airbyte.com/integrations/sources/the-guardian-api) | [connectors/source/the-guardian-api](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/the-guardian-api) | [source-the-guardian-api](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-the-guardian-api) | <small>`d42bd69f-6bf0-4d0b-9209-16231af07a92`</small> |
| **TiDB** | <img alt="TiDB icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/tidb.svg" height="30" height="30"/> | Source | airbyte/source-tidb:0.2.4 | alpha | [docs](https://docs.airbyte.com/integrations/sources/tidb) | [connectors/source/tidb](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/tidb) | [source-tidb](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-tidb) | <small>`0dad1a35-ccf8-4d03-b73e-6788c00b13ae`</small> |
| **TikTok Marketing** | <img alt="TikTok Marketing icon" src="https://raw.githubusercontent.com/airbytehq/airbyte /master/airbyte-config-oss/init-oss/src/main/resources/icons/tiktok.svg" height="30" height="30"/> | Source | airbyte/source-tiktok-marketing:3.0.1 | generally_available | [docs](https://docs.airbyte.com/integrations/sources/tiktok-marketing) | [connectors/source/tiktok-marketing](https://github.com/airbytehq/airbyte/issues?q=is:open+is:issue+label:connectors/source/tiktok-marketing) | [source-tiktok-marketing](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-tiktok-marketing) | <small>`4bfac00d-ce15-44ff-95b9-9e3c3e8fbd35`</small> |
Expand Down