-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ken Payne
authored
Oct 27, 2022
1 parent
cc6c51b
commit 5d7aef2
Showing
12 changed files
with
1,964 additions
and
100 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,25 +1,28 @@ | ||
version: 1 | ||
send_anonymous_usage_stats: true | ||
project_id: "tap-snowflake" | ||
project_id: tap-snowflake | ||
plugins: | ||
extractors: | ||
- name: "tap-snowflake" | ||
namespace: "tap_snowflake" | ||
- name: tap-snowflake | ||
namespace: tap_snowflake | ||
pip_url: -e . | ||
capabilities: | ||
- state | ||
- catalog | ||
- discover | ||
config: | ||
start_date: '2010-01-01T00:00:00Z' | ||
settings: | ||
# TODO: To configure using Meltano, declare settings and their types here: | ||
- name: username | ||
- name: user | ||
- name: password | ||
kind: password | ||
- name: start_date | ||
value: '2010-01-01T00:00:00Z' | ||
- name: account | ||
kind: password | ||
- name: role | ||
- name: warehouse | ||
- name: database | ||
- name: schema | ||
loaders: | ||
- name: target-jsonl | ||
variant: andyh1203 | ||
pip_url: target-jsonl | ||
environments: | ||
- name: dev |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[mypy] | ||
python_version = 3.9 | ||
warn_unused_configs = True | ||
ignore_missing_imports = True | ||
|
||
[mypy-backoff.*] | ||
ignore_missing_imports = True |
Oops, something went wrong.