-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Marcos/destination firebolt up sdk (#38060)
Co-authored-by: ptiurin <[email protected]> Co-authored-by: Petro Tiurin <[email protected]> Co-authored-by: Octavia Squidington III <[email protected]>
- Loading branch information
1 parent
7309360
commit 327e010
Showing
12 changed files
with
3,294 additions
and
86 deletions.
There are no files selected for viewing
29 changes: 0 additions & 29 deletions
29
airbyte-integrations/connectors/destination-firebolt/Dockerfile
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,20 +8,20 @@ | |
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Firebolt Spec", | ||
"type": "object", | ||
"required": ["username", "password", "database"], | ||
"required": ["client_id", "client_secret", "account", "database", "engine"], | ||
"additionalProperties": false, | ||
"properties": { | ||
"username": { | ||
"client_id": { | ||
"type": "string", | ||
"title": "Username", | ||
"description": "Firebolt email address you use to login.", | ||
"examples": ["[email protected]"], | ||
"title": "Client ID", | ||
"description": "Firebolt service account ID.", | ||
"examples": ["bbl9qth066hmxkwyb0hy2iwk8ktez9dz"], | ||
"order": 0 | ||
}, | ||
"password": { | ||
"client_secret": { | ||
"type": "string", | ||
"title": "Password", | ||
"description": "Firebolt password.", | ||
"title": "Client Secret", | ||
"description": "Firebolt secret, corresponding to the service account ID.", | ||
"airbyte_secret": true, | ||
"order": 1 | ||
}, | ||
|
@@ -44,7 +44,7 @@ | |
"engine": { | ||
"type": "string", | ||
"title": "Engine", | ||
"description": "Engine name or url to connect to." | ||
"description": "Engine name to connect to." | ||
}, | ||
"loading_method": { | ||
"type": "object", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.